aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Wagner <roman.wagner@pm.me>2024-04-16 18:15:48 +0200
committerLouis Pilfold <louis@lpil.uk>2024-04-16 20:38:07 +0100
commitb76a08f958a34c66b61b1e80860514544f6f951b (patch)
tree1e3c760624c5bcbe57f33f6d652c978a4d93b7b1
parentbdd747f445e191ccc4c49c97ada19b481ee1cff9 (diff)
downloadgleam_stdlib-b76a08f958a34c66b61b1e80860514544f6f951b.tar.gz
gleam_stdlib-b76a08f958a34c66b61b1e80860514544f6f951b.zip
fix: typo in `decode1`
-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 2a99510..9fd24f7 100644
--- a/src/gleam/dynamic.gleam
+++ b/src/gleam/dynamic.gleam
@@ -1053,7 +1053,7 @@ pub fn any(of decoders: List(Decoder(t))) -> Decoder(t) {
}
}
-/// Decode 1 values from a `Dynamic` value.
+/// Decode 1 value from a `Dynamic` value.
///
/// ## Examples
///