summaryrefslogtreecommitdiff
path: root/lib/isabelle/manual/Manual.thy
diff options
context:
space:
mode:
authorBrian Campbell2018-05-17 16:39:30 +0100
committerBrian Campbell2018-05-17 16:39:30 +0100
commit1867ec89a4493ca6ce92c8926885c4090b6d3d5d (patch)
tree8f6b4a527d80180341c8b19efd21c869a5e30065 /lib/isabelle/manual/Manual.thy
parent333bbb7cbfda60eda1bfe6642e068f2795056c1d (diff)
parentf5672ea6a1e04ad1f2bee91ad86584b183d323b4 (diff)
Merge branch 'cheri-mono' into sail2
Diffstat (limited to 'lib/isabelle/manual/Manual.thy')
-rw-r--r--lib/isabelle/manual/Manual.thy2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/isabelle/manual/Manual.thy b/lib/isabelle/manual/Manual.thy
index 6cdfbfa1..51591531 100644
--- a/lib/isabelle/manual/Manual.thy
+++ b/lib/isabelle/manual/Manual.thy
@@ -288,7 +288,7 @@ exception handler as arguments.
The exception mechanism is also used to implement early returns by throwing and catching return
values: A function body with one or more early returns of type @{typ 'a} (and exception type
@{typ 'e}) is lifted to a monadic expression with exception type @{typ "('a + 'e)"} using
-@{term liftSR}, such that an early return of the value @{term a} throws @{term "Inl a"}, and a
+@{term liftRS}, such that an early return of the value @{term a} throws @{term "Inl a"}, and a
regular exception @{term e} is thrown as @{term "Inr e"}. The function body is then wrapped in
@{term catch_early_returnS} to lower it back to the default monad and exception type. These
liftings and lowerings are automatically inserted by Sail for functions with early returns.\<^footnote>\<open>To be