diff options
-rw-r--r-- | src/gleam/dynamic.gleam | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gleam/dynamic.gleam b/src/gleam/dynamic.gleam index 1feadfb..b8217a9 100644 --- a/src/gleam/dynamic.gleam +++ b/src/gleam/dynamic.gleam @@ -971,17 +971,17 @@ pub fn tuple6( /// /// ```gleam /// import gleam/dict -/// dict.new() |> from |> map(string, int) +/// dict.new() |> from |> dict(string, int) /// // -> Ok(dict.new()) /// ``` /// /// ```gleam -/// from(1) |> map(string, int) +/// from(1) |> dict(string, int) /// // -> Error(DecodeError(expected: "Map", found: "Int", path: [])) /// ``` /// /// ```gleam -/// from("") |> map(string, int) +/// from("") |> dict(string, int) /// // -> Error(DecodeError(expected: "Map", found: "String", path: [])) /// ``` /// |