diff --git a/packages/collection/src/collection.ts b/packages/collection/src/collection.ts index 8f842ef68..2b4868a5f 100644 --- a/packages/collection/src/collection.ts +++ b/packages/collection/src/collection.ts @@ -831,7 +831,6 @@ export class Collection extends Map { /** * The sort method sorts the items of a collection in place and returns it. - * The sort is not necessarily stable in Node 10 or older. * The default sort order is according to string Unicode code points. * * @param compareFunction - Specifies a function that defines the sort order. @@ -1026,7 +1025,6 @@ export class Collection extends Map { /** * The sorted method sorts the items of a collection and returns it. - * The sort is not necessarily stable in Node 10 or older. * The default sort order is according to string Unicode code points. * * @param compareFunction - Specifies a function that defines the sort order.