From 2f8b0e557b300f9b59f0b06778f6bc26aed6ba3f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 3 Jun 2016 14:03:09 +0200 Subject: [PATCH] Consistent quotes --- src/libstore/misc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/misc.cc b/src/libstore/misc.cc index 3ad93991d..4bb043aaf 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);