summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-10-08 10:00:22 +0000
committerArne Juul <arnej@verizonmedia.com>2020-10-08 10:00:22 +0000
commit92ba58419a060ca954159b09b1a1c8914db673db (patch)
tree47acac98287bb31426345295c86effb91303cbf2 /eval
parent04f832a3306c838b3febe21f85d7364e14306695 (diff)
update comment
Diffstat (limited to 'eval')
-rw-r--r--eval/src/vespa/eval/eval/tensor_spec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/vespa/eval/eval/tensor_spec.cpp b/eval/src/vespa/eval/eval/tensor_spec.cpp
index 4273cb347c6..1a6a9520e58 100644
--- a/eval/src/vespa/eval/eval/tensor_spec.cpp
+++ b/eval/src/vespa/eval/eval/tensor_spec.cpp
@@ -49,7 +49,7 @@ TensorSpec &
TensorSpec::add(Address address, double value) {
auto [iter, inserted] = _cells.emplace(std::move(address), value);
if (! inserted) {
- // to simplify reference concat implementation, allow
+ // to simplify reference implementations, allow
// adding the same address several times to a Spec, but
// only with the same value every time:
assert(iter->second.value == value);