X Tutup
Skip to content

Commit 07a99db

Browse files
committed
Some minor doc updates
1 parent 92a5da5 commit 07a99db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libraries/node-core-library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
},
1414
"dependencies": {
1515
"@types/node": "8.10.54",
16-
"@types/semver": "5.3.33",
1716
"colors": "~1.2.1",
1817
"fs-extra": "~7.0.1",
1918
"jju": "~1.4.0",
@@ -28,6 +27,7 @@
2827
"@types/fs-extra": "5.0.4",
2928
"@types/jest": "23.3.11",
3029
"@types/jju": "1.4.1",
30+
"@types/semver": "5.3.33",
3131
"@types/timsort": "0.3.0",
3232
"@types/z-schema": "3.16.31",
3333
"gulp": "~4.0.2"

libraries/node-core-library/src/LegacyAdapters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class LegacyAdapters {
102102

103103
/**
104104
* Prior to Node 11.x, the `Array.sort()` algorithm is not guaranteed to be stable.
105-
* If you need a stable sort, you can use the `sortStable()` as a workaround.
105+
* If you need a stable sort, you can use `sortStable()` as a workaround.
106106
*
107107
* @remarks
108108
* On NodeJS 11.x and later, this method simply calls the native `Array.sort()`.

0 commit comments

Comments
 (0)
X Tutup