aboutsummaryrefslogtreecommitdiff
path: root/src/nix/command.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/command.hh')
-rw-r--r--src/nix/command.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/command.hh b/src/nix/command.hh
index 536802653..b159408c3 100644
--- a/src/nix/command.hh
+++ b/src/nix/command.hh
@@ -53,12 +53,12 @@ struct Installable
virtual Buildables toBuildable()
{
- throw Error("argument ā€˜%sā€™ cannot be built", what());
+ throw Error("argument '%s' cannot be built", what());
}
virtual Value * toValue(EvalState & state)
{
- throw Error("argument ā€˜%sā€™ cannot be evaluated", what());
+ throw Error("argument '%s' cannot be evaluated", what());
}
};