doc: add missing 'not' in simprocs example in RELEASES.md (#3206)

This commit is contained in:
David Renshaw 2024-01-22 11:14:18 -05:00 committed by GitHub
parent 4f41ccfcbf
commit feda615ed5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,7 +43,7 @@ Simprocs can be scoped, manually added to `simp` commands, and suppressed using
```lean
example : x + foo 2 = 12 + x := by
set_option simprocs false in
/- This `simp` command does make progress since `simproc`s are disabled. -/
/- This `simp` command does not make progress since `simproc`s are disabled. -/
fail_if_success simp
simp_arith