Fix docs typos

This commit is contained in:
Phil Davis
2022-05-03 11:04:37 +05:45
parent 8560c3bc00
commit 3fd33957ca
14 changed files with 37 additions and 37 deletions
+4 -4
View File
@@ -21,7 +21,7 @@ The JSON representation of a Group as handled by the Groups API looks like this:
}
```
Our implemenation currently support two Attributes for a Group:
Our implementation currently supports two Attributes for a Group:
| Attribute | Description |
|---------------|-------------|
@@ -33,7 +33,7 @@ Our implemenation currently support two Attributes for a Group:
#### `GET /groups`
Returns a list of all groups
Returns a list of all groups
Example:
@@ -125,7 +125,7 @@ Note the missing `"id"` Attribute. It will be generated by the server:
##### Response
When successful, the Reponse will return the new group including the newly allocated `"id"`:
When successful, the response will return the new group including the newly allocated `"id"`:
```
{
@@ -146,7 +146,7 @@ When successful the API returns no response body and the HTTP status code 204 (N
#### `PATCH /groups/{id}`
Updating attributes of a single group is supposed to be done with a patch request. This is however currently not fully
Updating attributes of a single group is supposed to be done with a patch request. This is however currently not fully
implemented for our write-enabled backends. The PATCH request can however be used to add multiple members to a group at once.
See below.