From 5f4664ad5aea4596e1693b822133f58b17b248a8 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 21 Aug 2019 10:14:52 +0100 Subject: Fix rendering of pipes in code blocks across dialects Pipes inside of code blocks inside of tables seem to pose a challenge for some Markdown renderers. Not a problem for Github's but this page is occasionally embedded in other documentation (such as nixery.dev) --- nix/nix-1p/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix/nix-1p') 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`) | +| || | Logical `OR` | +| `e1 -> e2` | Logical implication (i.e. !e1 || e2) | | `!` | Boolean negation | | `set.attr` | Access attribute `attr` in attribute set `set` | | `set ? attribute` | Test whether attribute set contains an attribute | -- cgit 1.4.1