diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-04-05 13:07:18 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-04-05 13:07:18 +0000 |
commit | e6fc269473f9b60e12a3c4eb4d2e17d0bd0c8f4a (patch) | |
tree | 6f0c18b48de44b4b42cf611fdfdcf83e9c1146e2 /src | |
parent | 3ee986a2622f0eae6287eeb5ede93691b140abf3 (diff) | |
download | gleam_stdlib-e6fc269473f9b60e12a3c4eb4d2e17d0bd0c8f4a.tar.gz gleam_stdlib-e6fc269473f9b60e12a3c4eb4d2e17d0bd0c8f4a.zip |
Correct typo
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 262d39c..de37ca0 100644 --- a/src/any.gleam +++ b/src/any.gleam @@ -22,7 +22,7 @@ pub external type Any; // pub external fn from(a) -> Any = "gleam__stdlib" "identity"; -// Unsafely cast any type into any other type.o +// Unsafely cast any type into any other type. // // 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. |