Replace mistaken "bit sign" with "sign bit"

This commit is contained in:
Abduqodiri Qurbonzoda
2019-03-21 21:43:06 +03:00
parent f36a8db8eb
commit 960797b926
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -315,7 +315,7 @@ class GeneratePrimitives(out: PrintWriter) : BuiltInsSourceGenerator(out) {
* The resulting `$otherName` value represents the same numerical value as this `$thisName`.
*
* The least significant ${fromIntegral.bitSize} bits of the resulting `$otherName` value are the same as the binary representation of this `$thisName` value,
* whereas the most significant ${toIntegral.bitSize - fromIntegral.bitSize} bits are filled with the bit sign of this value.
* whereas the most significant ${toIntegral.bitSize - fromIntegral.bitSize} bits are filled with the sign bit of this value.
*/
"""
}