aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-11-10 16:21:59 -0500
committerJohn Ericson <git@JohnEricson.me>2019-11-10 16:21:59 -0500
commit8669db1dcc9378bd61438e6c5978aea5d53d546f (patch)
tree10e5b65298c28b010ef5651d28f26d7d4aec85cf /src/libstore
parent4c34054673edd67cd1cfd81ab2972f27e518c78a (diff)
Clean up semicolon and comma
Thanks @bhipple for catching!
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/store-api.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index b860b48be..1862fa267 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -21,7 +21,7 @@ namespace nix {
MakeError(SubstError, Error);
-MakeError(BuildError, Error) /* denotes a permanent build failure */;
+MakeError(BuildError, Error); // denotes a permanent build failure
MakeError(InvalidPath, Error);
MakeError(Unsupported, Error);
MakeError(SubstituteGone, Error);