aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/list.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam
index b8f2369..530a27f 100644
--- a/src/gleam/list.gleam
+++ b/src/gleam/list.gleam
@@ -1807,7 +1807,7 @@ pub fn each(list: List(a), f: fn(a) -> b) -> Nil {
///
/// ## Examples
///
-/// ```
+/// ```gleam
/// try_each(
/// over: [1, 2, 3],
/// with: function_that_might_fail,