We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d937268 commit 369f6d1Copy full SHA for 369f6d1
1 file changed
mathics/builtin/logic.py
@@ -139,7 +139,7 @@ class Nand(Builtin):
139
<dl>
140
<dt>'Nand[$expr1$, $expr2$, ...]'
141
<dt>'$expr1$ && $expr2$ && ...'
142
- <dd> Implements the logical `NOR` function. The same that Not[And[$expr1$, $expr2$, ...]]
+ <dd> Implements the logical NAND function. The same as 'Not[And['$expr1$, $expr2$, ...']]'
143
</dl>
144
>> Nand[True, False]
145
= True
@@ -155,7 +155,7 @@ class Nor(Builtin):
155
156
<dt>'Nor[$expr1$, $expr2$, ...]'
157
158
- <dd>Implements the logical `NOR` function. The same that Not[Or[$expr1$, $expr2$, ...]]
+ <dd>Implements the logical NOR function. The same as 'Not[Or['$expr1$, $expr2$, ...']]'
159
160
>> Nor[True, False]
161
= False
0 commit comments