Skip to content

Commit

Permalink
remove repetitive words
Browse files Browse the repository at this point in the history
Signed-off-by: wellweek <xiezitai@outlook.com>
  • Loading branch information
wellweek authored Mar 8, 2024
1 parent ce0e788 commit c95b34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
- Remove `-dirty` version suffix for windows release build. @itchyny #2888
- Make use of `od` in tests more compatible. @nabijaczleweli @emanuele6 @nicowilliams #2922
- Add dependabot. @yeikel #2889
- Extend fuzzing setup to fuzz parser and and JSON serializer. @DavidKorczynski @emanuele6 #2952
- Extend fuzzing setup to fuzz parser and JSON serializer. @DavidKorczynski @emanuele6 #2952
- Keep releasing executables with legacy names. @itchyny #2951

# 1.7
Expand Down
2 changes: 1 addition & 1 deletion src/decNumber/decCommon.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ static decFloat * decFinalize(decFloat *df, bcdnum *num,
UBFROMUI(ub-3, 0); // to 00000000
}
// [note ub could now be to left of msd, and it is not safe
// to write to the the left of the msd]
// to write to the left of the msd]
// now at most 3 digits left to non-9 (usually just the one)
for (; ub>=umsd; *ub=0, ub--) {
if (*ub==9) continue; // carry
Expand Down

0 comments on commit c95b34f

Please sign in to comment.