diff options
author | Daniel Burrows <dburrows@debian.org> | 2005-12-07 22:23:32 +0000 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2005-12-07 22:23:32 +0000 |
commit | 7e683a74085cef220040656dcaa33935855e2c31 (patch) | |
tree | 8ed94de4bf935c4f6145ecb6e12cf99fc1854e3f /src | |
parent | 4c0f9051084aa2bf2ff4bd0b22ac4c99c14b569a (diff) | |
download | aptitude-7e683a74085cef220040656dcaa33935855e2c31.tar.gz |
[aptitude @ Fix the documentation of addUpdate.]
Diffstat (limited to 'src')
-rw-r--r-- | src/generic/util/immset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generic/util/immset.h b/src/generic/util/immset.h index dd97a0d5..108dd140 100644 --- a/src/generic/util/immset.h +++ b/src/generic/util/immset.h @@ -668,7 +668,7 @@ namespace imm return set(old.add(old.root, x), old.value_compare); } - /** Like insert, but updates existing equivalent elements. */ + /** Like add, but updates existing equivalent elements. */ static set addUpdate(const set &old, const Val &x) { return set(old.addUpdate(old.root, x), old.value_compare); |