aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorDanila <danila.fedorin@gmail.com>2021-01-08 16:12:21 -0800
committerGitHub <noreply@github.com>2021-01-08 16:12:21 -0800
commit1db3f84baccc30ac38227c1f7edc3bfbc8e5ff5b (patch)
tree1d5643bbd003aaf65a29c1c219b594c5e2bf2b17 /src/libexpr
parentba0f841a078402f95cf93693c3749743c3ab6246 (diff)
Upcase "Boolean" in Flake attribute type error
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/flake/flake.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/flake/flake.cc b/src/libexpr/flake/flake.cc
index 9f1e4063f..61aeae543 100644
--- a/src/libexpr/flake/flake.cc
+++ b/src/libexpr/flake/flake.cc
@@ -131,7 +131,7 @@ static FlakeInput parseFlakeInput(EvalState & state,
attrs.emplace(attr.name, attr.value->integer);
break;
default:
- throw TypeError("flake input attribute '%s' is %s while a string, boolean, or integer is expected",
+ throw TypeError("flake input attribute '%s' is %s while a string, Boolean, or integer is expected",
attr.name, showType(*attr.value));
}
}