Escape the pipes in the syntax table

This commit is contained in:
Adrian Hall 2020-04-10 11:40:39 +01:00
parent 0ce89d53d7
commit 36abfcc79b
1 changed files with 3 additions and 3 deletions

View File

@ -61,10 +61,10 @@ Cardinality is a property that describes how many elements of another entity can
| Value (left) | Value (right) | Meaning |
|:------------:|:-------------:|--------------------------------------------------------|
| `|o` | `o|` | Zero or one |
| `||` | `||` | Exactly one |
| `\|o` | `o\|` | Zero or one |
| `\|\|` | `\|\|` | Exactly one |
| `}o` | `o{` | Zero or more (no upper limit) |
| `}|` | `|{` | One or more (no upper limit) |
| `}\|` | `\|{ | One or more (no upper limit) |
### Identification