8000 docs: Small Documentation Typos by b-steel · Pull Request #3243 · feathersjs/feathers · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/schema/typebox.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const messageQueryProperties = Type.Pick(messageSchema, ['id', 'text', 'createdA
})
const messageQuerySchema = Type.Intersect(
[
// This will additioanlly allow querying for `{ name: { $ilike: 'Dav%' } }`
// This will additionally allow querying for `{ name: { $ilike: 'Dav%' } }`
querySyntax(messageQueryProperties, {
name: {
$ilike: Type.String()
Expand Down Expand Up @@ -542,7 +542,7 @@ The sections of this format are described as follows:
###### `iso-date-time`

```ts
Type.String({ format: 'date-time' })
Type.String({ format: 'iso-date-time' })
```

Validates against the [date-time](https://www.rfc-editor.org/rfc/rfc3339#section-5.6) described in RFC3339/ISO8601, which is the following format:
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/cli/service.schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const messageDataValidator = getValidator(messageDataSchema, dataValidato
export const messageDataResolver = resolve<Message, HookContext>({})
```

### Patch schema and resolvers
## Patch schema and Resolvers

The patch schema is used for updating existing entries calling [service.patch](../../api/services.md#patchid-data-params). This is often different then the data schema for new entries and by default is a partial of the [main schema](#main-schemas-and-resolvers).

Expand Down
0