diff options
Diffstat (limited to 'src/nix/command.hh')
-rw-r--r-- | src/nix/command.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/command.hh b/src/nix/command.hh index 536802653819..b159408c3a98 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()); } }; |