aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiacomo Cavalieri <giacomo.cavalieri@icloud.com>2023-07-23 10:11:38 +0200
committerLouis Pilfold <louis@lpil.uk>2023-07-23 17:43:44 +0100
commitecc55bef9ef517944eaf17ec5f4e4acf6fe74ee3 (patch)
treee26b3ffdca8e5cab051b51c1f9a90f220d137ad7
parent181be774a04ff48905aae49ecbaf44a44de2b4d1 (diff)
downloadgleam_stdlib-ecc55bef9ef517944eaf17ec5f4e4acf6fe74ee3.tar.gz
gleam_stdlib-ecc55bef9ef517944eaf17ec5f4e4acf6fe74ee3.zip
Remove special character from `map2`'s doc
-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 })