diff options
author | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-04-28 12:54:14 +0200 |
---|---|---|
committer | Guillaume Maudoux <guillaume.maudoux@tweag.io> | 2022-04-28 12:54:14 +0200 |
commit | acf990c9ea9de913a500cf2b7a7492eef3bcd7b5 (patch) | |
tree | 3c5c5427195422554c2f9df6d2b580bd0a74132e /src/libexpr/primops/fromTOML.cc | |
parent | 963b8aa39b169bf5c054449ddce39d60faacf298 (diff) |
fix errors case and wording
Diffstat (limited to 'src/libexpr/primops/fromTOML.cc')
-rw-r--r-- | src/libexpr/primops/fromTOML.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/fromTOML.cc b/src/libexpr/primops/fromTOML.cc index 6bfd8e285..336cfe5cc 100644 --- a/src/libexpr/primops/fromTOML.cc +++ b/src/libexpr/primops/fromTOML.cc @@ -7,7 +7,7 @@ namespace nix { static void prim_fromTOML(EvalState & state, const Pos & pos, Value * * args, Value & val) { - auto toml = state.forceStringNoCtx(*args[0], pos, "While evaluating the argument passed to builtins.fromTOML"); + auto toml = state.forceStringNoCtx(*args[0], pos, "while evaluating the argument passed to builtins.fromTOML"); std::istringstream tomlStream(std::string{toml}); |