Browse Source

doc tweak

Alexander Rose 6 years ago
parent
commit
e3bd6e3ba0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/mol-data/int/sorted-array.ts

+ 1 - 1
src/mol-data/int/sorted-array.ts

@@ -14,7 +14,7 @@ namespace SortedArray {
     export const ofSortedArray: <T extends number = number>(xs: ArrayLike<number>) => SortedArray<T> = Impl.ofSortedArray as any;
     // create sorted array [min, max] (it DOES contain the max value)
     export const ofRange: <T extends number = number>(min: T, max: T) => SortedArray<T> = Impl.ofRange as any;
-    // create sorted array [min, max) (it DOES not contain the max value)
+    // create sorted array [min, max) (it does NOT contain the max value)
     export const ofBounds: <T extends number = number>(min: T, max: T) => SortedArray<T> = (min, max) => Impl.ofRange(min, max - 1) as any;
     export const is: <T extends number = number>(v: any) => v is SortedArray<T> = Impl.is as any;