Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ebafab9

Browse files
authoredJul 16, 2020
delete an unnecessary semicolon...
Sorry for the typo.
1 parent 9dee590 commit ebafab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/libcore/num/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,7 @@ $EndFeature, "
16481648
// Deal with the final bit of the exponent separately, since
16491649
// squaring the base afterwards is not necessary and may cause a
16501650
// needless overflow.
1651-
acc.wrapping_mul(base);
1651+
acc.wrapping_mul(base)
16521652
}
16531653
}
16541654

0 commit comments

Comments
 (0)
Please sign in to comment.