Skip to content

Commit

Permalink
Fix content issues (#36165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena authored Oct 2, 2024
1 parent b69f6d3 commit 1c0dda6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ Here are some popular editors:
>
</td>
<td>
<a href="https://www.sublimetext.com/docs/">Official</a>,<a
<a href="https://www.sublimetext.com/docs/">Official</a>, <a
href="https://docs.sublimetext.io/"
>
Unofficial</a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ For audio files, you can find free software ([Audacity](https://www.audacityteam

### Publishing tools

You also need a way to upload files: from your hard drive to a distant web server. To do that you should use a publishing tool such as an (S)[FTP client](/en-US/docs/Glossary/FTP), [RSync](https://en.wikipedia.org/wiki/Rsync), or [Git/GitHub](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site).
You also need a way to upload files: from your hard drive to a distant web server. To do that you should use a publishing tool such as an [(S)FTP client](/en-US/docs/Glossary/FTP), [RSync](https://en.wikipedia.org/wiki/Rsync), or [Git/GitHub](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site).

Each operating system includes an (S)FTP client, as part of its file manager. Windows Explorer, Nautilus (a common Linux file manager), and the Mac Finder all include this functionality. However, people often choose dedicated (S)FTP clients to display local or remote directories side-by-side and store server passwords.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Events have three functions:

## Examples

In this simple example we add a listener to the {{WebExtAPIRef("notifications.onClosed")}} event to listen for system notifications being closed. When this occurs, we log an appropriate message to the console.
In this simple example we add a listener to the `notifications.onClosed` event to listen for system notifications being closed. When this occurs, we log an appropriate message to the console.

```js
browser.notifications.onClosed.addListener((notificationId) => {
Expand Down
1 change: 0 additions & 1 deletion files/en-us/web/api/htmloptionelement/label/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ optionElement.label = "Updated label";
## See also

- {{domxref("HTMLOptionElement.value")}}
- {{domxref("HTMLOptionElement.label")}}
- {{HTMLElement("select")}}
- {{HTMLElement("datalist")}}
- {{HTMLElement("optgroup")}}
5 changes: 2 additions & 3 deletions files/en-us/web/api/htmloptionscollection/remove/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ optionList.remove(0); // removes the first item

## See also

- {{DOMxRef("HTMLOptionsCollection.add")}}
- {{DOMxRef("HTMLOptionsCollection.add()")}}
- {{DOMxRef("HTMLOptionsCollection.length")}}
- {{DOMxRef("HTMLOptionsCollection.selectedIndex")}}
- {{domxref("HTMLOptionsCollection") }}
- {{domxref("HTMLOptionsCollection.remove()")}}
- {{domxref("HTMLOptionsCollection")}}
- {{domxref("Element.remove")}}
2 changes: 1 addition & 1 deletion files/en-us/web/http/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Beginners are encouraged to start with the foundational guides before exploring
- [MIME types](/en-US/docs/Web/HTTP/MIME_types)
- : Since HTTP/1.0, different types of content can be transmitted.
This article explains how this is accomplished using the {{HTTPHeader("Content-Type")}} header and the MIME standard.
A shortlist of common types used by web developers can be found in [Common MIME types](Web/HTTP/MIME_types/Common_types).
A shortlist of common types used by web developers can be found in [Common MIME types](/en-US/docs/Web/HTTP/MIME_types/Common_types).
- [Compression in HTTP](/en-US/docs/Web/HTTP/Compression)
- : Browsers and servers compress their messages before sending them over the network to reduce the amount of data that needs to be transmitted, improving transfer speed and bandwidth utilization.
- [HTTP caching](/en-US/docs/Web/HTTP/Caching)
Expand Down

0 comments on commit 1c0dda6

Please sign in to comment.