aboutsummaryrefslogtreecommitdiff
path: root/src/gleam_stdlib.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/gleam_stdlib.erl')
-rw-r--r--src/gleam_stdlib.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam_stdlib.erl b/src/gleam_stdlib.erl
index db2f6fd..f84e658 100644
--- a/src/gleam_stdlib.erl
+++ b/src/gleam_stdlib.erl
@@ -202,6 +202,6 @@ regex_scan(Regex, String) ->
end.
base_decoded4(S) ->
- try {ok, base64:decode(S)} catch
- error:badarith -> {error, nil}
+ try {ok, base64:decode(S)}
+ catch error:badarith -> {error, nil}
end.