From 46baf56bcf24cfbfae141b8bd1ad67417432e126 Mon Sep 17 00:00:00 2001 From: Quinn Wilton Date: Wed, 2 Dec 2020 13:23:25 -0800 Subject: Fix typo in nand docs (they referenced nor) --- src/gleam/bool.gleam | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 { -- cgit v1.2.3