treewide: Switch markdown placeholder from "..." to <...>

We use angle brackets since they look a lot like a placeholder while
also being valid nix code, as suggested by roberth here: https://github.com/NixOS/nixpkgs/pull/299554#discussion_r1541797970
This commit is contained in:
Janne Heß 2024-03-27 19:39:55 +01:00 committed by Valentin Gagarin
parent fcc95ff817
commit bc5ee2b8f8
6 changed files with 12 additions and 12 deletions

View file

@ -96,7 +96,7 @@ let
something = (pkgs.something.override { jre = my_jre; });
other = (pkgs.other.override { jre = my_jre; });
in
"..."
<...>
```
You can also specify what JDK your JRE should be based on, for example