[standard-ml/en-en] align things a little

This commit is contained in:
David Pedersen 2013-12-05 12:34:04 +01:00
parent a03869362b
commit acc2dda568

View File

@ -316,7 +316,7 @@ val x = raiseException "hello" handle Fail msg => msg
(* We can pattern match in "handle" to make sure (* We can pattern match in "handle" to make sure
a specfic exception was raised, or grab the message *) a specfic exception was raised, or grab the message *)
val y = raiseException "..." handle Fail _ => "Fail was raised" val y = raiseException "..." handle Fail _ => "Fail was raised"
| Domain => "Domain was raised" | Domain => "Domain was raised"
(* y now has the value "Fail was raised" *) (* y now has the value "Fail was raised" *)
(* We can define our own exceptions like this *) (* We can define our own exceptions like this *)