Skip to content
This repository has been archived by the owner on Feb 15, 2019. It is now read-only.

Commit

Permalink
fixed misspellings in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Burger committed May 13, 2016
1 parent 466349b commit 4437069
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c/number.c
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ static double floatify_normalize(p, e, sign, sticky) bigit *p; iptr e; IBOOL sig
if (round) {
mlow += 1;
if (e == 0 && mlow == hidden_bit) {
e = 1; /* squeeking into lowest normalized spot */
e = 1; /* squeaking into lowest normalized spot */
} else if (mlow == hidden_bit * 2) {
/* don't bother with mlow = mlow >> 1 since hidden bit and up are ignored after this */
e += 1;
Expand Down
2 changes: 1 addition & 1 deletion s/print.ss
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ floating point returns with (1 0 -1 ...).
; words, a digit is insignificant if incrementing the preceding
; digit does not cause the number to fall outside the rounding
; range of v." For 1e23, which falls exactly midway between two
; fp numbers and reads as the next one down due to "unbiasd rounding",
; fp numbers and reads as the next one down due to "unbiased rounding",
; if we add even a single 1 digit way down, we're pushed to the next
; higher (when read). For example:
; 100000000000000000000000.000000000000000000000000000000000000001
Expand Down

0 comments on commit 4437069

Please sign in to comment.