clarify simp_add

This commit is contained in:
Steven Clontz
2023-11-16 15:20:04 -06:00
committed by GitHub
parent 7ed6c4b4a6
commit 1b76917f1b

View File

@@ -28,9 +28,9 @@ This code here
macro \"simp_add\" : tactic => `(tactic|(
simp only [add_assoc, add_left_comm, add_comm]))
```
creates a new tactic `simp_add`, which runs
was used to create a new tactic `simp_add`, which runs
`simp only [add_assoc, add_left_comm, add_comm]`.
Try it!
Try running `simp_add` to solve this level!
"