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 /src | |
parent | 8cfa606f3834cf7d05f5011bc68295a9d84263dc (diff) | |
download | gleam_stdlib-acbd79a5cfeac7c705bf2c686b2bb1e12205f150.tar.gz gleam_stdlib-acbd79a5cfeac7c705bf2c686b2bb1e12205f150.zip |
Document modules
Diffstat (limited to 'src')
-rw-r--r-- | src/any.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/any.gleam b/src/any.gleam index a2fa418..a4ef0d4 100644 --- a/src/any.gleam +++ b/src/any.gleam @@ -21,7 +21,7 @@ pub external fn from(a) -> Any = "gleam__stdlib" "identity"; // This is an escape hatch for the type system that may be useful when wrapping // native Erlang APIs. It is to be used as a last measure only. // -pub external fn unsafeCoerce(a) -> b = "gleam__stdlib" "identity"; +pub external fn unsafe_coerce(a) -> b = "gleam__stdlib" "identity"; pub external fn string(Any) -> Result(String, String) = "gleam__stdlib" "decode_string" |