Skip to content

Commit 369f6d1

Browse files
committed
Fix typos in NAND and NOR docs.
1 parent d937268 commit 369f6d1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mathics/builtin/logic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class Nand(Builtin):
139139
<dl>
140140
<dt>'Nand[$expr1$, $expr2$, ...]'
141141
<dt>'$expr1$ && $expr2$ && ...'
142-
<dd> Implements the logical `NOR` function. The same that Not[And[$expr1$, $expr2$, ...]]
142+
<dd> Implements the logical NAND function. The same as 'Not[And['$expr1$, $expr2$, ...']]'
143143
</dl>
144144
>> Nand[True, False]
145145
= True
@@ -155,7 +155,7 @@ class Nor(Builtin):
155155
<dl>
156156
<dt>'Nor[$expr1$, $expr2$, ...]'
157157
<dt>'$expr1$ && $expr2$ && ...'
158-
<dd>Implements the logical `NOR` function. The same that Not[Or[$expr1$, $expr2$, ...]]
158+
<dd>Implements the logical NOR function. The same as 'Not[Or['$expr1$, $expr2$, ...']]'
159159
</dl>
160160
>> Nor[True, False]
161161
= False

0 commit comments

Comments
 (0)