diff options
author | Giacomo Cavalieri <giacomo.cavalieri@icloud.com> | 2023-04-19 10:27:37 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-04-20 17:07:18 +0100 |
commit | 5cd9a91c87e8f7867e45dd02f8ad6c262690ea0c (patch) | |
tree | db8bd0b2a5b4e257e1ce3ed24fe2430bd4953ee5 /src | |
parent | 35d99d1bfc295a4ec40982d3b745b38db655812d (diff) | |
download | gleam_stdlib-5cd9a91c87e8f7867e45dd02f8ad6c262690ea0c.tar.gz gleam_stdlib-5cd9a91c87e8f7867e45dd02f8ad6c262690ea0c.zip |
`tuple5` doc
Diffstat (limited to 'src')
-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 c25500d..16f593c 100644 --- a/src/gleam/dynamic.gleam +++ b/src/gleam/dynamic.gleam @@ -809,12 +809,12 @@ pub fn tuple4( /// > from(#(1, 2)) /// > |> tuple5(int, float, string, int, int) /// Error([ -/// DecodeError(expected: "5 element tuple", found: "2 element tuple", path: [])), +/// DecodeError(expected: "Tuple of 5 elements", found: "Tuple of 2 elements", path: [])), /// ]) /// /// > from("") /// > |> tuple5(int, float, string, int, int) -/// Error([DecodeError(expected: "5 element tuple", found: "String", path: [])]) +/// Error([DecodeError(expected: "Tuple of 5 elements", found: "String", path: [])]) /// ``` /// pub fn tuple5( |