Remove unnecessary leading line whitespace before a tab

This commit is contained in:
Landon Curt Noll
2021-11-07 20:14:28 -08:00
parent 2ca6e789ca
commit 27f977b545
45 changed files with 144 additions and 144 deletions

View File

@@ -32,7 +32,7 @@ DESCRIPTION
The value g will be set as if the following were used:
g = int(return_value);
g = int(return_value);
For some rounding modes, g will be an integer in the interval [0, 400).
For other rounding modes, g will be an integer in the interval (-400, 0].
@@ -67,7 +67,7 @@ DESCRIPTION
The following shows relationship between the return value and the resulting
g, m, and s values:
return_value == g + m/60 + s/3600;
return_value == g + m/60 + s/3600;
EXAMPLE