Skip to content
This repository was archived by the owner on Nov 14, 2022. It is now read-only.

Commit 6247a13

Browse files
committed
Fix repeated word typos
Found with `git grep -P '\b([a-z]+)\s+\1\b'` [git filter-repo] original commit: rust-lang/rust@190d139
1 parent 236efc3 commit 6247a13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ieee.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2341,7 +2341,7 @@ mod sig {
23412341
// Our exponent should not underflow.
23422342
*exp = exp.checked_sub(bits as ExpInt).unwrap();
23432343

2344-
// Jump is the inter-limb jump; shift is is intra-limb shift.
2344+
// Jump is the inter-limb jump; shift is the intra-limb shift.
23452345
let jump = bits / LIMB_BITS;
23462346
let shift = bits % LIMB_BITS;
23472347

@@ -2375,7 +2375,7 @@ mod sig {
23752375
// Our exponent should not overflow.
23762376
*exp = exp.checked_add(bits as ExpInt).unwrap();
23772377

2378-
// Jump is the inter-limb jump; shift is is intra-limb shift.
2378+
// Jump is the inter-limb jump; shift is the intra-limb shift.
23792379
let jump = bits / LIMB_BITS;
23802380
let shift = bits % LIMB_BITS;
23812381

0 commit comments

Comments
 (0)