aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/constraints.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/guide/constraints.asciidoc')
-rw-r--r--doc/src/guide/constraints.asciidoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/guide/constraints.asciidoc b/doc/src/guide/constraints.asciidoc
index 822962d..7721831 100644
--- a/doc/src/guide/constraints.asciidoc
+++ b/doc/src/guide/constraints.asciidoc
@@ -74,11 +74,11 @@ to an integer:
[source,erlang]
----
fun (Value0) when is_binary(Value0) ->
- try binary_to_integer(Value0) of
- Value -> {true, Value}
- catch _:_ ->
- false
- end.
+ try binary_to_integer(Value0) of
+ Value -> {true, Value}
+ catch _:_ ->
+ false
+ end.
----
Constraint functions should only crash because the programmer