Skip to content

Commit 1ccd509

Browse files
bogglebrson
authored andcommitted
---
yaml --- r: 6425 b: refs/heads/master c: 1a13504 h: refs/heads/master i: 6423: f73a11d v: v3
1 parent c8b5ad7 commit 1ccd509

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 1c9f97b6694001a572fe8a085fb9a8cfc6ca44b8
2+
refs/heads/master: 1a13504796eb167c35ef96c5d29b6f8a7a33ecfe

trunk/src/lib/bool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Conjunction
3030
*/
3131
pure fn and(a: t, b: t) -> t { a && b }
3232

33-
/* Function: and
33+
/* Function: or
3434
3535
Disjunction
3636
*/

trunk/src/lib/four.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Module: four
55
66
The fourrternary Belnap relevance logic FOUR represented as ADT
77
8-
This allows reasoning with four logic values (true, false, none, both)
8+
This allows reasoning with four logic values (true, false, none, both).
99
1010
Implementation: Truth values are represented using a single u8 and
11-
all operations are done using bitshifting which is fast
11+
all operations are done using bit operations which is fast
1212
on current cpus.
1313
*/
1414

trunk/src/lib/tri.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Module: tri
55
66
ADT for the ternary Kleene logic K3
77
8-
This allows reasoning with three logic values (true, false, unknown)
8+
This allows reasoning with three logic values (true, false, unknown).
99
1010
Implementation: Truth values are represented using a single u8 and
11-
all operations are done using bitshifting which is fast
11+
all operations are done using bit operations which is fast
1212
on current cpus.
1313
*/
1414

0 commit comments

Comments
 (0)