Added comment

This commit is contained in:
Ron Buckton 2017-10-29 13:26:51 -07:00
parent 1f961cda11
commit c83eeaaac7

View file

@ -1602,7 +1602,8 @@ namespace ts {
}
/**
* Compare two values for their order relative to each other.
* Compare two numeric values for their order relative to each other.
* To compare strings, use any of the `compareStrings` functions.
*/
export function compareValues(a: number, b: number) {
return compareComparableValues(a, b);