Fix capitalization in parseInt description

This commit is contained in:
Jake Boone
2019-07-18 12:38:14 -07:00
committed by GitHub
parent 97b5671f99
commit c30ba7884c

2
src/lib/es5.d.ts vendored
View File

@@ -12,7 +12,7 @@ declare var Infinity: number;
declare function eval(x: string): any;
/**
* Converts A string to an integer.
* Converts a string to an integer.
* @param s A string to convert into a number.
* @param radix A value between 2 and 36 that specifies the base of the number in numString.
* If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.