about summary refs log tree commit diff
path: root/nix/nix-1p/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'nix/nix-1p/README.md')
-rw-r--r--nix/nix-1p/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/nix-1p/README.md b/nix/nix-1p/README.md
index ef3e97ae1d..9491684d6d 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>&vert;&vert;</code> | Logical `OR`                                                           |
+| `e1 -> e2`           | Logical implication (i.e. <code>!e1 &vert;&vert; e2</code>)                 |
 | `!`                  | Boolean negation                                                            |
 | `set.attr`           | Access attribute `attr` in attribute set `set`                              |
 | `set ? attribute`    | Test whether attribute set contains an attribute                            |