Skip to content

Commit 89bc816

Browse files
authored
Merge branch 'main' into fix/2259
2 parents ddd6da2 + fb30f5b commit 89bc816

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
127127
1. Ensure the ssh-agent is running. You can use the "Auto-launching the ssh-agent" instructions in "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)", or start it manually:
128128
```shell
129129
# start the ssh-agent in the background
130-
$ eval $(ssh-agent -s)
130+
$ eval `ssh-agent -s`
131131
> Agent pid 59566
132132
```
133133

content/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Creating a pull request from a fork
33
intro: You can create a pull request to propose changes you've made to a fork of an upstream repository.
44
redirect_from:
55
- /articles/creating-a-pull-request-from-a-fork
6-
permissions: Anyone with write access to a repository can create a pull request from user-owned fork.
6+
permissions: Anyone with write access to a repository can create a pull request from a user-owned fork.
77
versions:
88
free-pro-team: '*'
99
enterprise-server: '*'

content/rest/overview/resources-in-the-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ Verb | Description
271271
`HEAD` | Can be issued against any resource to get just the HTTP header info.
272272
`GET` | Used for retrieving resources.
273273
`POST` | Used for creating resources.
274-
`PATCH` | Used for updating resources with partial JSON data. For instance, an Issue resource has `title` and `body` attributes. A PATCH request may accept one or more of the attributes to update the resource. PATCH is a relatively new and uncommon HTTP verb, so resource endpoints also accept `POST` requests.
274+
`PATCH` | Used for updating resources with partial JSON data. For instance, an Issue resource has `title` and `body` attributes. A `PATCH` request may accept one or more of the attributes to update the resource.
275275
`PUT` | Used for replacing resources or collections. For `PUT` requests with no `body` attribute, be sure to set the `Content-Length` header to zero.
276276
`DELETE` |Used for deleting resources.
277277

0 commit comments

Comments
 (0)