chore(library/init/meta/interactive): fix docstring

This commit is contained in:
Leonardo de Moura 2017-12-11 16:21:49 -08:00
parent 533ddc0279
commit cb74ef1670

View file

@ -420,7 +420,7 @@ example (n : ) : n = n :=
begin
with_cases { induction n },
case nat.zero { reflexivity },
case nat.succ n' ih { reflexivity }
case nat.succ : n' ih { reflexivity }
end
```