Skip to content

Commit 064aa35

Browse files
mhk119kim-em
andauthored
Update src/Init/Data/BitVec/Lemmas.lean
Co-authored-by: Kim Morrison <scott@tqft.net>
1 parent 82c9de4 commit 064aa35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Init/Data/BitVec/Lemmas.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2901,7 +2901,7 @@ theorem toNat_rotateLeft {x : BitVec w} {r : Nat} :
29012901

29022902
/-! ## Rotate Right -/
29032903

2904-
/--`rotateRight` is defined in terms of left and right shifts. -/
2904+
/-- `rotateRight` is defined in terms of left and right shifts. -/
29052905
theorem rotateRight_def {x : BitVec w} {r : Nat} :
29062906
x.rotateRight r = (x >>> (r % w)) ||| (x <<< (w - r % w)) := by
29072907
simp only [rotateRight, rotateRightAux]

0 commit comments

Comments
 (0)