diff options
author | Guillaume Maudoux <layus.on@gmail.com> | 2023-01-20 13:06:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 13:06:00 +0100 |
commit | a0642305ab52b344910373041b38ab27a58cab0e (patch) | |
tree | 5984ce90bea5aa679cb5a6c2adedd3acd078a8e3 /src | |
parent | ee4b849b175fbc8c6548d7db3de7b5c7dc567be6 (diff) |
Use complete '__toString' attribute name
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 16b1c2f23..1828b8c2e 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -2128,7 +2128,7 @@ std::optional<std::string> EvalState::tryAttrsToString(const PosIdx pos, Value & Value v1; callFunction(*i->value, v, v1, pos); return coerceToString(pos, v1, context, - "while evaluating the result of the `toString` attribute", + "while evaluating the result of the `__toString` attribute", coerceMore, copyToStore).toOwned(); } |