aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Jones <m.pricejones@gmail.com>2021-04-18 17:33:50 +0100
committerLouis Pilfold <louis@lpil.uk>2021-04-18 21:39:25 +0100
commit1887709e22f969b43e7e9c2ff9918bd8bc9ec114 (patch)
tree680bdad2348f28472dd8b3720219a7d677f32fff /src
parent78d1a9660b96be9e2647d18403682af3daddf5c3 (diff)
downloadgleam_stdlib-1887709e22f969b43e7e9c2ff9918bd8bc9ec114.tar.gz
gleam_stdlib-1887709e22f969b43e7e9c2ff9918bd8bc9ec114.zip
Fix typo
Apostrophe instead of double quote.
Diffstat (limited to 'src')
-rw-r--r--src/gleam/dynamic.gleam2
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