We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45772af commit f0d03e1Copy full SHA for f0d03e1
doc/misc/semver.md
@@ -407,5 +407,5 @@ All surrounding text is simply ignored (`v3.4 replaces v3.3.1` becomes `3.4.0`).
407
Only text which lacks digits will fail coercion (`version one` is not valid).
408
The maximum length for any semver component considered for coercion is 16 characters;
409
longer components will be ignored (`10000000000000000.4.7.4` becomes `4.7.4`).
410
-The maximum value for any semver component is `Integer.MAX_SAFE_INTEGER || (2**53 - 1)`;
+The maximum value for any semver component is `Number.MAX_SAFE_INTEGER || (2**53 - 1)`;
411
higher value components are invalid (`9999999999999999.4.7.4` is likely invalid).
0 commit comments