lol

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

authored by

Janne Heß and committed by
Valentin Gagarin
bc5ee2b8 fcc95ff8

+12 -12
+6 -6
CONTRIBUTING.md
··· 557 557 558 558 ```nix 559 559 foo { 560 - arg = "..."; 560 + arg = <...>; 561 561 } 562 562 ``` 563 563 ··· 566 566 ```nix 567 567 foo 568 568 { 569 - arg = "..."; 569 + arg = <...>; 570 570 } 571 571 ``` 572 572 573 573 Also fine is 574 574 575 575 ```nix 576 - foo { arg = "..."; } 576 + foo { arg = <...>; } 577 577 ``` 578 578 579 579 if it's a short call. ··· 683 683 - Functions should list their expected arguments as precisely as possible. That is, write 684 684 685 685 ```nix 686 - { stdenv, fetchurl, perl }: "..." 686 + { stdenv, fetchurl, perl }: <...> 687 687 ``` 688 688 689 689 instead of 690 690 691 691 ```nix 692 - args: with args; "..." 692 + args: with args; <...> 693 693 ``` 694 694 695 695 or 696 696 697 697 ```nix 698 - { stdenv, fetchurl, perl, ... }: "..." 698 + { stdenv, fetchurl, perl, ... }: <...> 699 699 ``` 700 700 701 701 For functions that are truly generic in the number of arguments (such as wrappers around `mkDerivation`) that have some required arguments, you should write them using an `@`-pattern:
+1 -1
doc/build-helpers/fetchers.chapter.md
··· 123 123 buildPythonPackage rec { 124 124 pname = "pysimplesoap"; 125 125 version = "1.16.2"; 126 - src = "..."; 126 + src = <...>; 127 127 128 128 patches = [ 129 129 (fetchDebianPatch {
+1 -1
doc/languages-frameworks/agda.section.md
··· 194 194 version = "1.5.0"; 195 195 pname = "iowa-stdlib"; 196 196 197 - src = "..."; 197 + src = <...>; 198 198 199 199 libraryFile = ""; 200 200 libraryName = "IAL-1.3";
+2 -2
doc/languages-frameworks/chicken.section.md
··· 69 69 chickenEggs = super.chickenEggs.overrideScope' (eggself: eggsuper: { 70 70 srfi-180 = eggsuper.srfi-180.overrideAttrs { 71 71 # path to a local copy of srfi-180 72 - src = "..."; 72 + src = <...>; 73 73 }; 74 74 }); 75 75 }); 76 76 in 77 77 # Here, `myChickenPackages.chickenEggs.json-rpc`, which depends on `srfi-180` will use 78 78 # the local copy of `srfi-180`. 79 - "..." 79 + <...> 80 80 ```
+1 -1
doc/languages-frameworks/java.section.md
··· 96 96 something = (pkgs.something.override { jre = my_jre; }); 97 97 other = (pkgs.other.override { jre = my_jre; }); 98 98 in 99 - "..." 99 + <...> 100 100 ``` 101 101 102 102 You can also specify what JDK your JRE should be based on, for example
+1 -1
doc/languages-frameworks/python.section.md
··· 1890 1890 { 1891 1891 myPythonPackages = python3Packages.override { 1892 1892 overrides = self: super: { 1893 - twisted = "..."; 1893 + twisted = <...>; 1894 1894 }; 1895 1895 }; 1896 1896 }