summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-03-09 09:59:26 +0100
committerTor Egge <Tor.Egge@online.no>2022-03-09 09:59:26 +0100
commit126a8d6e23f7ba805d4902f0c90ad377161a13e7 (patch)
treec2fd7e4261a98c735fdba1045a76f35167cc829e /searchlib
parentc235fafdec77905c7c08c6498c7fa81b4d9b0bc5 (diff)
Update comment.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/multi_value_mapping.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/multi_value_mapping.h b/searchlib/src/vespa/searchlib/attribute/multi_value_mapping.h
index 4ed70baa2db..60f2f3709ec 100644
--- a/searchlib/src/vespa/searchlib/attribute/multi_value_mapping.h
+++ b/searchlib/src/vespa/searchlib/attribute/multi_value_mapping.h
@@ -35,7 +35,7 @@ public:
ConstArrayRef getDataForIdx(EntryRef idx) const { return _store.get(idx); }
void set(uint32_t docId, ConstArrayRef values);
- // replace is generally unsafe and should only be used when
+ // get_writable is generally unsafe and should only be used when
// compacting enum store (replacing old enum index with updated enum index)
ArrayRef get_writable(uint32_t docId) { return _store.get_writable(_indices[docId]); }