Skip to content

Commit

Permalink
fix: phrasing
Browse files Browse the repository at this point in the history
Co-authored-by: Mayada <[email protected]>
  • Loading branch information
Lofty-Brambles and Maddily authored Nov 18, 2024
1 parent efd82ac commit b3b83c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodeJS/apis/RESTful_APIs.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ http://sub.domain.com:1234/path/to/resource?query=something&param=something#anch
- The domain name is `domain.com`
- `1234` indicates the port. The browser usually hides this, since it defaults to `80`, which is the default port for web servers.
- `/path/to/resource` denotes the resource path which refers to a resource location within the server.
- There are some query parameters here: `?query=something&param=something`. Query string parameters start with a question mark (`?`), following a `key=value` format and separated by an ampersand (`&`). There can be any number of parameters and they are generally used by the server to spot the right resource.
- There are some query parameters here: `?query=something&param=something`. Query string parameters start with a question mark (`?`), following a pattern of `key=value` pairs, which are separated by ampersands (`&`). There can be any number of parameters, and they are generally used by the server to identify the right resource.
- The `#anchor` is called a fragment or a named anchor. It is used to refer to an internal section within a web document.

### RESTful APIs
Expand Down

0 comments on commit b3b83c2

Please sign in to comment.