aboutsummaryrefslogtreecommitdiff
path: root/src/gleam_stdlib.erl
diff options
context:
space:
mode:
authorNicklas Sindlev Andersen <nsa200293@live.dk>2022-06-07 19:55:57 +0200
committerGitHub <noreply@github.com>2022-06-07 18:55:57 +0100
commiteeceba29e9d27fe1820bf2d806d4699a37a0469c (patch)
treed14003ab111183644e00f92b48465a379f757a5e /src/gleam_stdlib.erl
parent32d63fb1a0d8d46d17ef7077a4eb1e795dd1cc62 (diff)
downloadgleam_stdlib-eeceba29e9d27fe1820bf2d806d4699a37a0469c.tar.gz
gleam_stdlib-eeceba29e9d27fe1820bf2d806d4699a37a0469c.zip
Fix int.power and float.power functions (#302)
Diffstat (limited to 'src/gleam_stdlib.erl')
-rw-r--r--src/gleam_stdlib.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam_stdlib.erl b/src/gleam_stdlib.erl
index 9dc769b..6fd44ed 100644
--- a/src/gleam_stdlib.erl
+++ b/src/gleam_stdlib.erl
@@ -374,4 +374,4 @@ inspect(Any) when is_function(Any) ->
),
["//fn(", Args, ") { ... }"];
inspect(Any) ->
- ["//erl(", io_lib:format("~p", [Any]), ")"].
+ ["//erl(", io_lib:format("~p", [Any]), ")"]. \ No newline at end of file