aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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 a06d1f5..85eb42a 100644
--- a/src/gleam/dynamic.gleam
+++ b/src/gleam/dynamic.gleam
@@ -371,7 +371,7 @@ pub fn result(
/// ```gleam
/// > from([1, 2, 3])
/// > |> list(of: string)
-/// Error([DecodeError(expected: "String", found: "Int", path: [])])
+/// Error([DecodeError(expected: "String", found: "Int", path: ["*"])])
/// ```
///
/// ```gleam