Skip to content

Commit eeb2182

Browse files
authored
Merge pull request #113 from rust-lang-nursery/glossary-cnf-dnf
Fix CNF and DNF definitions in glossary
2 parents 55dea16 + 3d35691 commit eeb2182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GLOSSARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ which the subformulas are arranged fulfil certain rules. The individual patterns
9797
have different advantages for their manipulation.
9898

9999
### Conjunctive normal form (CNF)
100-
A formula in CNF is a disjunction of conjunctions. For example `(x1 || x2 ||
100+
A formula in CNF is a conjunction of disjunctions. For example `(x1 || x2 ||
101101
x3) && (x4 || x5 || x6)` is in CNF.
102102

103103
### Disjunctive normal form (DNF)
104-
A formula in DNF is a conjunction of disjunctions. For example `(x1 && x2 &&
104+
A formula in DNF is a disjunction of conjunctions. For example `(x1 && x2 &&
105105
x3) || (x4 && x5 && x6)` is in DNF.
106106

107107
### Negation normal form (NNF)

0 commit comments

Comments
 (0)