Skip to content

Commit cdef92d

Browse files
gsi-alejandroejscribner
authored andcommitted
docs(schema): spell check
1 parent eab5430 commit cdef92d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docusaurus/docs/basic/schema.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,18 +169,18 @@ const schema = Schema({
169169

170170
### Generate UUID for a field
171171

172-
Sometimes we want to provide a unique value to a field,
173-
Ottoman provide an easy way to generate a UUID value for a given field by setting the below configuration in the schema.
172+
Sometimes we want to provide a unique value to a field.
173+
Ottoman provides an easy way to generate a UUID value for a given field by setting the below configuration in the schema.
174174

175175
```typescript
176176
const schema = new Schema(
177177
{ customId: {type: String, auto: 'uuid'} }
178178
);
179179
```
180180

181-
Now, every time you create a document the field `customId` will have a unique value (generated by UUID).
181+
Now, every time you create a document, the field `customId` will have a unique value (generated by UUID).
182182

183-
e.g
183+
For example:
184184

185185
```json
186186
{

0 commit comments

Comments
 (0)