doc-src/TutorialI/CodeGen/document/CodeGen.tex
changeset 9458 c613cd06d5cf
parent 9145 9f7b8de5bfaf
child 9541 d17c0b34d5c8
--- a/doc-src/TutorialI/CodeGen/document/CodeGen.tex	Fri Jul 28 13:04:59 2000 +0200
+++ b/doc-src/TutorialI/CodeGen/document/CodeGen.tex	Fri Jul 28 16:02:51 2000 +0200
@@ -94,14 +94,14 @@
 that contains two \isa{case}-expressions over instructions. Thus we add
 automatic case splitting as well, which finishes the proof:%
 \end{isamarkuptxt}%
-\isacommand{apply}(induct\_tac~xs,~simp,~simp~split:~instr.split)\isacommand{.}%
+\isacommand{by}(induct\_tac~xs,~simp,~simp~split:~instr.split)%
 \begin{isamarkuptext}%
 \noindent
 Note that because \isaindex{auto} performs simplification, it can
 also be modified in the same way \isa{simp} can. Thus the proof can be
 rewritten as%
 \end{isamarkuptext}%
-\isacommand{apply}(induct\_tac~xs,~auto~split:~instr.split)\isacommand{.}%
+\isacommand{by}(induct\_tac~xs,~auto~split:~instr.split)%
 \begin{isamarkuptext}%
 \noindent
 Although this is more compact, it is less clear for the reader of the proof.