about summary refs log tree commit diff
path: root/src/libstore/misc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/misc.cc')
-rw-r--r--src/libstore/misc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/misc.cc b/src/libstore/misc.cc
index 6ecf8787cf61..2facda81583d 100644
--- a/src/libstore/misc.cc
+++ b/src/libstore/misc.cc
@@ -63,7 +63,7 @@ Path findOutput(const Derivation & drv, string id)
 {
     foreach (DerivationOutputs::const_iterator, i, drv.outputs)
         if (i->first == id) return i->second.path;
-    throw Error(format("derivation has no output `%1%'") % id);
+    throw Error(format("derivation has no output ‘%1%’") % id);
 }
 
 
@@ -186,7 +186,7 @@ static void dfsVisit(StoreAPI & store, const PathSet & paths,
     PathSet & parents)
 {
     if (parents.find(path) != parents.end())
-        throw BuildError(format("cycle detected in the references of `%1%'") % path);
+        throw BuildError(format("cycle detected in the references of ‘%1%’") % path);
 
     if (visited.find(path) != visited.end()) return;
     visited.insert(path);