diff options
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( |