Skip to content

Commit c77d241

Browse files
authored
Fix grammar error (#5973)
1 parent 36256d9 commit c77d241

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/security/authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ For example, a model file for `User` would include all the logic for operating o
126126

127127
```js
128128
export const User = {
129-
getAll: () => { /* fetching/transform logic for all users */ },
130-
getById: (id) => { /* fetching/transform logic for a single user */ },
131-
getByGroupId: (id) => { /* fetching/transform logic for a group of users */ },
129+
getAll: () => { /* fetching/transformation logic for all users */ },
130+
getById: (id) => { /* fetching/transformation logic for a single user */ },
131+
getByGroupId: (id) => { /* fetching/transformation logic for a group of users */ },
132132
};
133133
```
134134

0 commit comments

Comments
 (0)