diff options
author | Loïc Hoguin <[email protected]> | 2016-09-14 18:51:11 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-09-14 18:51:11 +0200 |
commit | 31cabe0fb98b4c75cb088761ba5ad53dbd2285ee (patch) | |
tree | f38d722f59530b0db689a4c06f5339620a1e5f6f /doc/src/guide/constraints.asciidoc | |
parent | a231216b07876293dbcfde020cb0228510c5064d (diff) | |
download | cowboy-31cabe0fb98b4c75cb088761ba5ad53dbd2285ee.tar.gz cowboy-31cabe0fb98b4c75cb088761ba5ad53dbd2285ee.tar.bz2 cowboy-31cabe0fb98b4c75cb088761ba5ad53dbd2285ee.zip |
Use spaces in snippets in the guide
Diffstat (limited to 'doc/src/guide/constraints.asciidoc')
-rw-r--r-- | doc/src/guide/constraints.asciidoc | 10 |
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 |