From 7334b309a8d887b7dbf8b082f68ec2a233fd6995 Mon Sep 17 00:00:00 2001 From: chyipin Date: Fri, 7 Jul 2023 02:20:57 -0700 Subject: [PATCH] docs: Fix spelling (#8990) --- src/sort.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sort.ts b/src/sort.ts index 469f397e72..cd1be43012 100644 --- a/src/sort.ts +++ b/src/sort.ts @@ -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; } @@ -50,7 +50,7 @@ export interface EncodingSortField { 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; } @@ -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; }