diff options
author | Michael Jones <m.pricejones@gmail.com> | 2021-04-18 17:33:50 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-04-18 21:39:25 +0100 |
commit | 1887709e22f969b43e7e9c2ff9918bd8bc9ec114 (patch) | |
tree | 680bdad2348f28472dd8b3720219a7d677f32fff | |
parent | 78d1a9660b96be9e2647d18403682af3daddf5c3 (diff) | |
download | gleam_stdlib-1887709e22f969b43e7e9c2ff9918bd8bc9ec114.tar.gz gleam_stdlib-1887709e22f969b43e7e9c2ff9918bd8bc9ec114.zip |
Fix typo
Apostrophe instead of double quote.
-rw-r--r-- | src/gleam/dynamic.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/dynamic.gleam b/src/gleam/dynamic.gleam index aa1ff5d..696031e 100644 --- a/src/gleam/dynamic.gleam +++ b/src/gleam/dynamic.gleam @@ -6,7 +6,7 @@ import gleam/option.{None, Option, Some} import gleam/result import gleam/string_builder -/// `Dynamic` data is data that we don"t know the type of yet. +/// `Dynamic` 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. pub external type Dynamic |