Update syntax reference with new fixity information for (||) and (&&)

This commit is contained in:
Rob Dockins 2017-10-02 18:17:38 -07:00
parent e7d3ed02f9
commit d32f3324c9
2 changed files with 4 additions and 4 deletions

View File

@ -107,12 +107,12 @@ Operator Associativity
`==>` right
`\/` right
`/\` right
`||` right
`&&` right
`->` (types) right
`!=` `==` not associative
`>` `<` `<=` `>=` `<$` `>$` `<=$` `>=$` not associative
`||` right
`^` left
`&&` right
`#` right
`>>` `<<` `>>>` `<<<` `>>$` left
`+` `-` left
@ -168,11 +168,11 @@ Operator Associativity Description
`==>` right Short-cut implication
`\/` right Short-cut or
`/\` right Short-cut and
`||` right Logical or
`&&` right Logical and
`!=` `==` none Not equals, equals
`>` `<` `<=` `>=` `<$` `>$` `<=$` `>=$` none Comparisons
`||` right Logical or
`^` left Exclusive-or
`&&` right Logical and
`~` right Logical negation
Table: Bit operations.

Binary file not shown.