diff options
author | Daniel Hahler <git@thequod.de> | 2015-03-06 16:39:48 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-06-03 21:59:57 +0200 |
commit | ba5888bccd2c5dfd0de73b91c3a5c18fa8c4866e (patch) | |
tree | 9666fa83340e408771c38dc7a1a51a43c28e3abe | |
parent | 67af480244250409c8cf41e66a4995258b8ccc9b (diff) | |
download | guix-ba5888bccd2c5dfd0de73b91c3a5c18fa8c4866e.tar.gz |
Fix typos: s/the the/the/
-rw-r--r-- | nix/libstore/gc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/gc.cc b/nix/libstore/gc.cc index 885a459449..34768324c2 100644 --- a/nix/libstore/gc.cc +++ b/nix/libstore/gc.cc @@ -96,7 +96,7 @@ Path addPermRoot(StoreAPI & store, const Path & _storePath, "(are you running nix-build inside the store?)") % gcRoot); if (indirect) { - /* Don't clobber the the link if it already exists and doesn't + /* Don't clobber the link if it already exists and doesn't point to the Nix store. */ if (pathExists(gcRoot) && (!isLink(gcRoot) || !isInStore(readLink(gcRoot)))) throw Error(format("cannot create symlink `%1%'; already exists") % gcRoot); |