diff options
-rw-r--r-- | nix/nix-1p/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/nix-1p/README.md b/nix/nix-1p/README.md index ef3e97ae1d75..9491684d6d46 100644 --- a/nix/nix-1p/README.md +++ b/nix/nix-1p/README.md @@ -117,8 +117,8 @@ Nix has several operators, most of which are unsurprising: | `==` | Equality | | `>`, `>=`, `<`, `<=` | Ordering comparators | | `&&` | Logical `AND` | -| `\|\|` | Logical `OR` | -| `e1 -> e2` | Logical implication (i.e. `!e1 \|\| e2`) | +| <code>||</code> | Logical `OR` | +| `e1 -> e2` | Logical implication (i.e. <code>!e1 || e2</code>) | | `!` | Boolean negation | | `set.attr` | Access attribute `attr` in attribute set `set` | | `set ? attribute` | Test whether attribute set contains an attribute | |