about summary refs log tree commit diff
path: root/src/libstore/misc.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-06-03T12·03+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-06-03T12·03+0200
commit2f8b0e557b300f9b59f0b06778f6bc26aed6ba3f (patch)
tree381cac19dc9c4dbaa2140bc8504c349d6ade3831 /src/libstore/misc.cc
parent080d6079757bdf7af86c2743411e9ff8f06a504e (diff)
Consistent quotes
Diffstat (limited to 'src/libstore/misc.cc')
-rw-r--r--src/libstore/misc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/misc.cc b/src/libstore/misc.cc
index 3ad93991d9e4..4bb043aaf17e 100644
--- a/src/libstore/misc.cc
+++ b/src/libstore/misc.cc
@@ -173,7 +173,7 @@ Paths Store::topoSortPaths(const PathSet & paths)
 
     dfsVisit = [&](const Path & path, const Path * parent) {
         if (parents.find(path) != parents.end())
-            throw BuildError(format("cycle detected in the references of '%1%' from '%2%'") % path % *parent);
+            throw BuildError(format("cycle detected in the references of ‘%1%’ from ‘%2%’") % path % *parent);
 
         if (visited.find(path) != visited.end()) return;
         visited.insert(path);