diff options
author | Shea Levy <shea@shealevy.com> | 2014-02-12T12·26-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2014-02-12T12·26-0500 |
commit | 7438f0bc2bc4b92bddf7159744ab2923e34b7457 (patch) | |
tree | 123a5ef73e40a640d6b4ebad77a755cd866de00a /src/nix-store/nix-store.cc | |
parent | 2246aa77d291e07141f6a508e46730e2c28e1d84 (diff) |
error messages start in lowercase
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 638d24498821..038f099649b0 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -888,7 +888,7 @@ static void opServe(Strings opFlags, Strings opArgs) } break; default: - throw Error(format("Unknown serve query `%1%'") % cmd); + throw Error(format("unknown serve query `%1%'") % cmd); } out.flush(); } @@ -897,7 +897,7 @@ static void opServe(Strings opFlags, Strings opArgs) dumpPath(readString(in), out); break; default: - throw Error(format("Unknown serve command `%1%'") % cmd); + throw Error(format("unknown serve command `%1%'") % cmd); } } |