diff -r a39e5d43de55 -r bbefb6ce5cb2 doc-src/TutorialI/Misc/Itrev.thy --- a/doc-src/TutorialI/Misc/Itrev.thy Fri Sep 01 18:29:52 2000 +0200 +++ b/doc-src/TutorialI/Misc/Itrev.thy Fri Sep 01 19:09:44 2000 +0200 @@ -4,10 +4,10 @@ text{* Function @{term"rev"} has quadratic worst-case running time -because it calls function @{term"@"} for each element of the list and -@{term"@"} is linear in its first argument. A linear time version of +because it calls function @{text"@"} for each element of the list and +@{text"@"} is linear in its first argument. A linear time version of @{term"rev"} reqires an extra argument where the result is accumulated -gradually, using only @{name"#"}: +gradually, using only @{text"#"}: *} consts itrev :: "'a list \\ 'a list \\ 'a list";