diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-04-14 17:38:22 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-04-14 18:21:24 +0000 |
commit | acbd79a5cfeac7c705bf2c686b2bb1e12205f150 (patch) | |
tree | 332372f30be2397fbc3ae78d069c0ef536cba899 /gen | |
parent | 8cfa606f3834cf7d05f5011bc68295a9d84263dc (diff) | |
download | gleam_stdlib-acbd79a5cfeac7c705bf2c686b2bb1e12205f150.tar.gz gleam_stdlib-acbd79a5cfeac7c705bf2c686b2bb1e12205f150.zip |
Document modules
Diffstat (limited to 'gen')
-rw-r--r-- | gen/src/any.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen/src/any.erl b/gen/src/any.erl index 62f1a77..62be0c6 100644 --- a/gen/src/any.erl +++ b/gen/src/any.erl @@ -1,7 +1,7 @@ -module(any). -compile(no_auto_import). --export([from/1, unsafeCoerce/1, string/1, int/1, float/1, atom/1, bool/1, thunk/1, list/2, tuple/1, field/2]). +-export([from/1, unsafe_coerce/1, string/1, int/1, float/1, atom/1, bool/1, thunk/1, list/2, tuple/1, field/2]). list_module() -> list. @@ -9,7 +9,7 @@ list_module() -> from(A) -> gleam__stdlib:identity(A). -unsafeCoerce(A) -> +unsafe_coerce(A) -> gleam__stdlib:identity(A). string(A) -> |