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 75a66ef..b5bc6f5 100644
--- a/src/gleam/list.gleam
+++ b/src/gleam/list.gleam
@@ -384,7 +384,7 @@ pub fn map(list: List(a), with fun: fn(a) -> b) -> List(b) {
///
/// If a list is longer than the other the extra elements are dropped.
///
-/// ## Examples
+/// ## Examples
///
/// ```gleam
/// > map2([1, 2, 3], [4, 5, 6], fn(x, y) { x + y })