aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Reusch <jreusch4@gmail.com>2024-08-11 15:10:39 +0200
committerLouis Pilfold <louis@lpil.uk>2024-08-13 19:15:00 +0200
commit78c0ca754100ca2f7e701a0d49f2f9d435337a83 (patch)
treedb2b5d84f158a65dbab290e189d3a946abc7ae8b
parentc832d873f6c6d04d545b5679ea266ef1c46ef995 (diff)
downloadgleam_stdlib-78c0ca754100ca2f7e701a0d49f2f9d435337a83.tar.gz
gleam_stdlib-78c0ca754100ca2f7e701a0d49f2f9d435337a83.zip
bring back `gleam` tag that I removed by accident
-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,