diff options
author | SnowMarble <kraccoon@dimipay.io> | 2024-10-23 18:36:27 +0900 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-10-23 10:38:40 +0100 |
commit | 8956b1de9edd15849641957f1414356d79f66be5 (patch) | |
tree | 89b0c5ccdb53d210b1a456d793f77b461d2ee803 /src | |
parent | 410d74f82f75534372a900f67cfb605605c4af9a (diff) | |
download | gleam_stdlib-8956b1de9edd15849641957f1414356d79f66be5.tar.gz gleam_stdlib-8956b1de9edd15849641957f1414356d79f66be5.zip |
apply format
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/bool.gleam | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/bool.gleam b/src/gleam/bool.gleam index 8551311..ced8005 100644 --- a/src/gleam/bool.gleam +++ b/src/gleam/bool.gleam @@ -105,7 +105,7 @@ pub fn negate(bool: Bool) -> Bool { /// ``` /// pub fn nor(a: Bool, b: Bool) -> Bool { - !{a || b} + !{ a || b } } /// Returns the nand of two bools. @@ -133,7 +133,7 @@ pub fn nor(a: Bool, b: Bool) -> Bool { /// ``` /// pub fn nand(a: Bool, b: Bool) -> Bool { - !{a && b} + !{ a && b } } /// Returns the exclusive or of two bools. |