Skip to content

Commit 035d7d7

Browse files
committed
style: remove unneeded parentheses
1 parent cfd2ce5 commit 035d7d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Init/Data/Nat/Div/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ theorem mod_eq_of_lt {a b : Nat} (h : a < b) : a % b = a :=
180180
(mod_eq a b).symm ▸ this
181181

182182
grind_pattern mod_eq_of_lt => a % b where
183-
guard (a < b)
183+
guard a < b
184184

185185
@[simp] theorem one_mod_eq_zero_iff {n : Nat} : 1 % n = 0 ↔ n = 1 := by
186186
match n with

0 commit comments

Comments
 (0)