diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-02-03 00:08:30 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-02-03 00:08:30 +0000 |
commit | feadf9b0bf553f5195cc82e3303c187a2f0a5c30 (patch) | |
tree | 5ebb4da05f57ff381b3cca28794495dce6fa6a2e /src/any.gleam | |
parent | 501e5029131d40d6b279df316ab6bb3cd64b936a (diff) | |
download | gleam_stdlib-feadf9b0bf553f5195cc82e3303c187a2f0a5c30.tar.gz gleam_stdlib-feadf9b0bf553f5195cc82e3303c187a2f0a5c30.zip |
Update examples to remove atoms
Diffstat (limited to 'src/any.gleam')
-rw-r--r-- | src/any.gleam | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/any.gleam b/src/any.gleam index 30c6cf4..bb34ac4 100644 --- a/src/any.gleam +++ b/src/any.gleam @@ -1,5 +1,5 @@ // doc """ -// `Any` data is data that we don't know the type of yet. +// `Any` data is data that we don"t know the type of yet. // We likely get data like this from interop with Erlang, or from // IO with the outside world. // """ @@ -8,7 +8,7 @@ pub external type Any; // doc """ // Convert any Gleam data into `Any` data. // """ -pub external fn from(a) -> Any = 'gleam__stdlib' 'identity'; +pub external fn from(a) -> Any = "gleam__stdlib" "identity"; // doc """ // Unsafely cast any type into any other type.o @@ -16,4 +16,4 @@ 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 unsafeCoerce(a) -> b = "gleam__stdlib" "identity"; |