diff --git a/doc/manual/release-notes/rl-1.9.xml b/doc/manual/release-notes/rl-1.9.xml
index e0b0f0720..9987226ff 100644
--- a/doc/manual/release-notes/rl-1.9.xml
+++ b/doc/manual/release-notes/rl-1.9.xml
@@ -24,12 +24,12 @@ binary-cache-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFG
that is not signed by one of the keys listed in
.
- Signature checking is only supported if you build Nix with
+ Signature checking is only supported if you built Nix with
the libsodium package.
- Nix has had experimental support for signed binary caches
- since version 1.7, but this release changes the signature format
- in a backwards-incompatible way.
+ Note that while Nix has had experimental support for signed
+ binary caches since version 1.7, this release changes the
+ signature format in a backwards-incompatible way.
@@ -101,7 +101,7 @@ with import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixo
nix-shell now has a flag
to execute a command in the
nix-shell environment,
- e.g. nix-shell --command make. This is like
+ e.g. nix-shell --run make. This is like
the existing flag, except that it
uses a non-interactive shell (ensuring that hitting Ctrl-C won’t
drop you into the child shell).
@@ -143,10 +143,10 @@ main = do
If chroots are enabled, they are now used for
all derivations, including fixed-output derivations (such as
- fetchurl); however the latter do have
- network access. Thus the latter can no longer access the host
- filesystem. If you need the old behaviour, you can set the
- option to
+ fetchurl). The latter do have network
+ access, but can no longer access the host filesystem. If you
+ need the old behaviour, you can set the option
+ to
relaxed.On Linux, if chroots are enabled, builds are
@@ -156,7 +156,7 @@ main = do
Store paths listed in
are now automatically
expanded to their closure. For instance, if you want
- /nix/store/…-bash/bin/sh> mounted in your
+ /nix/store/…-bash/bin/sh mounted in your
chroot as /bin/sh, you only need to say
build-chroot-dirs =
/bin/sh=/nix/store/…-bash/bin/sh; it is no longer
@@ -199,8 +199,8 @@ main = do
lookups now show position information.Improved Boehm GC use: we disabled scanning for
- interior pointers, which should reduce the Repeated
- allocation of very large block warnings and associated
+ interior pointers, which should reduce the “Repeated
+ allocation of very large block” warnings and associated
retention of memory.