diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-04-20 15:28:56 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-04-20 15:28:56 +0200 |
commit | 8c75621da6260d92459e105892751457e1659741 (patch) | |
tree | b9c935c5f680bc7740e2b7e697a4c275b99f9277 /src/libexpr/flake/flake.cc | |
parent | b69323f8c93d5b067b6baaa0acbb93f800fcd9bd (diff) |
Fix typo
Diffstat (limited to 'src/libexpr/flake/flake.cc')
-rw-r--r-- | src/libexpr/flake/flake.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/flake/flake.cc b/src/libexpr/flake/flake.cc index cb50bd013..55a4fe65b 100644 --- a/src/libexpr/flake/flake.cc +++ b/src/libexpr/flake/flake.cc @@ -235,10 +235,10 @@ static Flake getFlake( auto sEpoch = state.symbols.create("epoch"); // FIXME: remove soon if (vInfo.attrs->get(sEdition)) - warn("flake '%s' has deprecated attribution 'edition'", lockedRef); + warn("flake '%s' has deprecated attribute 'edition'", lockedRef); if (vInfo.attrs->get(sEpoch)) - warn("flake '%s' has deprecated attribution 'epoch'", lockedRef); + warn("flake '%s' has deprecated attribute 'epoch'", lockedRef); if (auto description = vInfo.attrs->get(state.sDescription)) { expectType(state, tString, *description->value, *description->pos); |