···9595 result with the specified separator interspersed between
9696 elements.
97979898- Type: concatMapStringsSep :: string -> (string -> string) -> [string] -> string
9898+ Type: concatMapStringsSep :: string -> (a -> string) -> [a] -> string
9999100100 Example:
101101 concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"]
···112112 /* Same as `concatMapStringsSep`, but the mapping function
113113 additionally receives the position of its argument.
114114115115- Type: concatIMapStringsSep :: string -> (int -> string -> string) -> [string] -> string
115115+ Type: concatIMapStringsSep :: string -> (int -> a -> string) -> [a] -> string
116116117117 Example:
118118 concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ]
+2-2
nixos/doc/manual/installation/installing.xml
···446446 password for the <literal>root</literal> user, e.g.
447447<screen>
448448setting root password...
449449-Enter new UNIX password: ***
450450-Retype new UNIX password: ***</screen>
449449+New password: ***
450450+Retype new password: ***</screen>
451451 <note>
452452 <para>
453453 For unattended installations, it is possible to use
···2233rustPlatform.buildRustPackage rec {
44 pname = "cargo-bloat";
55- version = "0.10.0";
55+ version = "0.10.1";
6677 src = fetchFromGitHub {
88 owner = "RazrFalcon";
99 repo = pname;
1010 rev = "v${version}";
1111- sha256 = "0bqzzh8vfqm7dpnb0fv4calnhsg9p3c5j06ycvg621p4zp4fydh2";
1111+ sha256 = "sha256-VcdZ/dKqFFQs8ItNEj407z1pWJqpHwwIsuNnsQ8KU/8=";
1212 };
13131414- cargoSha256 = "0f7hmwrs99qdvhn4lvs8cqva68w2y04fy3ca1xlhk7ncdmclcc4g";
1414+ cargoSha256 = "sha256-1TIGv0yVhkhThqZiQW9JrvFd0eouTlr8kgN/g7b4vDM=";
15151616 meta = with lib; {
1717 description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable";