diff options
-rw-r--r-- | src/gleam/dynamic.gleam | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gleam/dynamic.gleam b/src/gleam/dynamic.gleam index fb6eac2..de8cc9e 100644 --- a/src/gleam/dynamic.gleam +++ b/src/gleam/dynamic.gleam @@ -827,7 +827,9 @@ pub fn tuple4( /// Error([ /// DecodeError(expected: "Tuple of 5 elements", found: "Tuple of 2 elements", path: [])), /// ]) +/// ``` /// +/// ```gleam /// > from("") /// > |> tuple5(int, float, string, int, int) /// Error([DecodeError(expected: "Tuple of 5 elements", found: "String", path: [])]) |