Skip to content

Commit

Permalink
[docs] Fixing invalid documentation for boolean operators.
Browse files Browse the repository at this point in the history
close #717

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Aug 21, 2017
1 parent 1b8978c commit 283b1bd
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -106,11 +106,11 @@ The boolean operators are listed below. Each operator takes one or two boolean v
replies the boolean value resulting from the operational semantic of the operator.


| Operator | Function Name | Operator Semantic |
| --------------- | -------------- | -------------------------- |
| a || b | operator\_or | If a then true else b. | [:Fact:]$true || false$
| a &amp;&amp;& b | operator\_and | If a then b else false. | [:Fact:]$true && true$
| ! a | operator\_not | If a then false else true. | [:Fact:]$!false$
| Operator | Function Name | Operator Semantic |
| ---------------- | -------------- | -------------------------- |
| a &#124;&#124; b | operator\_or | If a then true else b. | [:Fact:]$true || false$
| a &amp;&amp; b | operator\_and | If a then b else false. | [:Fact:]$true && true$
| ! a | operator\_not | If a then false else true. | [:Fact:]$!false$


Each operator has an associated function name. This function contains
Expand Down

0 comments on commit 283b1bd

Please sign in to comment.