Skip to content

Commit

Permalink
docs: Fix spelling (#8990)
Browse files Browse the repository at this point in the history
  • Loading branch information
chyipin committed Jul 7, 2023
1 parent 50d4632 commit 7334b30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface SortField {
field: FieldName;

/**
* Whether to sort the field in ascending or descending order. One of `"ascending"` (default), `"descending"`, or `null` (no not sort).
* Whether to sort the field in ascending or descending order. One of `"ascending"` (default), `"descending"`, or `null` (do not sort).
*/
order?: SortOrder | null;
}
Expand Down Expand Up @@ -50,7 +50,7 @@ export interface EncodingSortField<F> {
op?: NonArgAggregateOp;

/**
* The sort order. One of `"ascending"` (default), `"descending"`, or `null` (no not sort).
* The sort order. One of `"ascending"` (default), `"descending"`, or `null` (do not sort).
*/
order?: SortOrder | null;
}
Expand All @@ -62,7 +62,7 @@ export interface SortByEncoding {
encoding: SortByChannel;

/**
* The sort order. One of `"ascending"` (default), `"descending"`, or `null` (no not sort).
* The sort order. One of `"ascending"` (default), `"descending"`, or `null` (do not sort).
*/
order?: SortOrder | null;
}
Expand Down

0 comments on commit 7334b30

Please sign in to comment.