aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/bool.gleam8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gleam/bool.gleam b/src/gleam/bool.gleam
index 0aa9939..684aa2f 100644
--- a/src/gleam/bool.gleam
+++ b/src/gleam/bool.gleam
@@ -59,16 +59,16 @@ pub fn nor(a: Bool, b: Bool) -> Bool {
///
/// ## Examples
///
-/// > nor(False, False)
+/// > nand(False, False)
/// True
///
-/// > nor(False, True)
+/// > nand(False, True)
/// True
///
-/// > nor(True, False)
+/// > nand(True, False)
/// True
///
-/// > nor(True, True)
+/// > nand(True, True)
/// False
///
pub fn nand(a: Bool, b: Bool) -> Bool {