diff options
author | Giacomo Cavalieri <giacomo.cavalieri@icloud.com> | 2023-04-19 10:27:11 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-04-20 17:07:18 +0100 |
commit | 35d99d1bfc295a4ec40982d3b745b38db655812d (patch) | |
tree | 74260b8ec3026238bb03d5930027685b026e5065 | |
parent | e90114805e75fd420833b641feeb2bb24bec70aa (diff) | |
download | gleam_stdlib-35d99d1bfc295a4ec40982d3b745b38db655812d.tar.gz gleam_stdlib-35d99d1bfc295a4ec40982d3b745b38db655812d.zip |
`tuple4` doc
-rw-r--r-- | src/gleam/dynamic.gleam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/dynamic.gleam b/src/gleam/dynamic.gleam index 3ad87d7..c25500d 100644 --- a/src/gleam/dynamic.gleam +++ b/src/gleam/dynamic.gleam @@ -755,7 +755,7 @@ pub fn tuple3( /// > from(#(1, 2)) /// > |> tuple4(int, float, string, int) /// Error([ -/// DecodeError(expected: "4 element tuple", found: "2 element tuple", path: []), +/// DecodeError(expected: "Tuple of 4 elements", found: "Tuple of 2 elements", path: []), /// ]) /// ``` /// @@ -763,7 +763,7 @@ pub fn tuple3( /// > from("") /// > |> tuple4(int, float, string, int) /// Error([ -/// DecodeError(expected: "4 element tuple", found: "String", path: []), +/// DecodeError(expected: "Tuple of 4 elements", found: "String", path: []), /// ]) /// ``` /// |