Skip to content

Commit df865df

Browse files
authored
doc: fix case syntax in mvcgen docs (#13745)
This PR fixes a syntax error in `mvcgen` documentation.
1 parent 729a662 commit df865df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Init/Tactics.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,8 +2300,8 @@ options. Of particular note is `stepLimit = some 42`, which is useful for bisect
23002300
Often, `mvcgen` will be used like this:
23012301
```
23022302
mvcgen [...]
2303-
case inv1 => by exact I1
2304-
case inv2 => by exact I2
2303+
case inv1 => exact I1
2304+
case inv2 => exact I2
23052305
all_goals (mleave; try grind)
23062306
```
23072307
There is special syntax for this:

0 commit comments

Comments
 (0)