diff --git a/doc/manual/nix-store.xml b/doc/manual/nix-store.xml
index 719bfe097..22bcb41e8 100644
--- a/doc/manual/nix-store.xml
+++ b/doc/manual/nix-store.xml
@@ -174,10 +174,19 @@ the specified store paths. Realisation is a somewhat overloaded term:
output. (For non-derivations argument, the argument itself is
printed.)
-If the option is used, then
-nix-store will print on standard error a
-description of what packages would be built or downloaded, and then
-quit.
+The following flags are available:
+
+
+
+
+
+ Print on standard error a description of what
+ packages would be built or downloaded, without actually performing
+ the operation
+
+
+
+
diff --git a/doc/manual/opt-common.xml b/doc/manual/opt-common.xml
index 0b5751767..72971bd6a 100644
--- a/doc/manual/opt-common.xml
+++ b/doc/manual/opt-common.xml
@@ -361,6 +361,17 @@
+
+
+ Fix corrupted or missing store paths by
+ redownloading or rebuilding them. Note that this is slow because it
+ requires computing a cryptographic hash of the contents of every
+ path in the closure of the build. Also note the warning under
+ nix-store --repair-path.
+
+
+
+
diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml
index af196344c..43d5080af 100644
--- a/doc/manual/release-notes.xml
+++ b/doc/manual/release-notes.xml
@@ -21,8 +21,14 @@
The new operation nix-store --repair-path
- allows corrupted or deleted store paths to be repaired by
- redownloading them.
+ allows corrupted or missing store paths to be repaired by
+ redownloading them. nix-store --verify --check-contents
+ --repair will scan and repair all paths in the Nix
+ store. Similarly, nix-env,
+ nix-build, nix-instantiate
+ and nix-store --realise have a
+ flag to detect and fix bad paths by
+ rebuilding or redownloading them.