diff -r bda7527ccf05 -r cc2d676d5395 src/Doc/Tutorial/Misc/Option2.thy --- a/src/Doc/Tutorial/Misc/Option2.thy Wed Dec 26 16:07:28 2018 +0100 +++ b/src/Doc/Tutorial/Misc/Option2.thy Wed Dec 26 16:25:20 2018 +0100 @@ -13,13 +13,13 @@ text\\noindent Frequently one needs to add a distinguished element to some existing type. -For example, type @{text"t option"} can model the result of a computation that +For example, type \t option\ can model the result of a computation that may either terminate with an error (represented by @{const None}) or return some value @{term v} (represented by @{term"Some v"}). Similarly, @{typ nat} extended with $\infty$ can be modeled by type @{typ"nat option"}. In both cases one could define a new datatype with customized constructors like @{term Error} and @{term Infinity}, -but it is often simpler to use @{text option}. For an application see +but it is often simpler to use \option\. For an application see \S\ref{sec:Trie}. \ (*<*)