Fixed documentation comment glitches in the logic ADTs

This commit is contained in:
Stefan Plantikow 2011-11-21 14:21:14 +01:00 committed by Brian Anderson
parent 1c9f97b669
commit 1a13504796
3 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ Conjunction
*/
pure fn and(a: t, b: t) -> t { a && b }
/* Function: and
/* Function: or
Disjunction
*/

View File

@ -5,10 +5,10 @@ Module: four
The fourrternary Belnap relevance logic FOUR represented as ADT
This allows reasoning with four logic values (true, false, none, both)
This allows reasoning with four logic values (true, false, none, both).
Implementation: Truth values are represented using a single u8 and
all operations are done using bitshifting which is fast
all operations are done using bit operations which is fast
on current cpus.
*/

View File

@ -5,10 +5,10 @@ Module: tri
ADT for the ternary Kleene logic K3
This allows reasoning with three logic values (true, false, unknown)
This allows reasoning with three logic values (true, false, unknown).
Implementation: Truth values are represented using a single u8 and
all operations are done using bitshifting which is fast
all operations are done using bit operations which is fast
on current cpus.
*/