about summary refs log tree commit diff
path: root/src/libstore/store-api.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-05-23T18·55-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-05-23T18·55-0400
commitb09b87321c058f691fcf64babe56620277b68e63 (patch)
treeaa1534bd47f8713206b718f7873fbadbb2ef2e5a /src/libstore/store-api.hh
parent107505e13ac83850fe01ef3e1a35e5bb2ab1ef52 (diff)
nix-store --export: Export paths in topologically sorted order
Fixes #118.
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r--src/libstore/store-api.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index 053bece7a3..a82fe32216 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -328,7 +328,7 @@ Path addPermRoot(StoreAPI & store, const Path & storePath,
 
 
 /* Sort a set of paths topologically under the references relation.
-   If p refers to q, then p follows q in this list. */
+   If p refers to q, then p preceeds q in this list. */
 Paths topoSortPaths(StoreAPI & store, const PathSet & paths);