aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuci Phillips <104490260+scorpi4n@users.noreply.github.com>2024-05-15 15:54:38 -0500
committerLouis Pilfold <louis@lpil.uk>2024-05-20 19:26:45 +0100
commite5e5143842d93c986a99ef1d1f122cc686d76767 (patch)
tree0c687f55f0480653401a3a2c457ca0f7d922a4da /src
parent9610f1c05270ab88ea9209c16bea5ba1873a9aaa (diff)
downloadgleam_stdlib-e5e5143842d93c986a99ef1d1f122cc686d76767.tar.gz
gleam_stdlib-e5e5143842d93c986a99ef1d1f122cc686d76767.zip
Format set module
Diffstat (limited to 'src')
-rw-r--r--src/gleam/set.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/set.gleam b/src/gleam/set.gleam
index 356da12..390c101 100644
--- a/src/gleam/set.gleam
+++ b/src/gleam/set.gleam
@@ -202,9 +202,9 @@ pub fn filter(
/// Creates a new set from a given set with all the same entries except any
/// entry found on the given list.
-///
+///
/// ## Examples
-///
+///
/// ```gleam
/// drop(from_list([1, 2, 3, 4]), [1, 3])
/// // -> [2, 4]