summaryrefslogtreecommitdiff
path: root/Lib/std/std_unordered_multiset.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-03-12 20:21:19 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-03-12 20:21:19 +0000
commit4a25ddbb97c5c1c793ae5552c40932e6684bb5ae (patch)
tree3d9383a1b7b764bfe7d37ff37dc891eb0dbd4e1e /Lib/std/std_unordered_multiset.i
parent404aa2c3dbc1c5adfaaa9fbe3d251b839c98f807 (diff)
downloadswig-4a25ddbb97c5c1c793ae5552c40932e6684bb5ae.tar.gz
Correct unordered_set/unordered_multiset template Key parameter name
Diffstat (limited to 'Lib/std/std_unordered_multiset.i')
-rw-r--r--Lib/std/std_unordered_multiset.i14
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/std/std_unordered_multiset.i b/Lib/std/std_unordered_multiset.i
index 1817fc24a..8effa586e 100644
--- a/Lib/std/std_unordered_multiset.i
+++ b/Lib/std/std_unordered_multiset.i
@@ -17,19 +17,19 @@
// const declarations are used to guess the intent of the function being
// exported; therefore, the following rationale is applied:
//
-// -- f(std::unordered_multiset<T>), f(const std::unordered_multiset<T>&):
+// -- f(std::unordered_multiset<Key>), f(const std::unordered_multiset<Key>&):
// the parameter being read-only, either a sequence or a
-// previously wrapped std::unordered_multiset<T> can be passed.
-// -- f(std::unordered_multiset<T>&), f(std::unordered_multiset<T>*):
+// previously wrapped std::unordered_multiset<Key> can be passed.
+// -- f(std::unordered_multiset<Key>&), f(std::unordered_multiset<Key>*):
// the parameter may be modified; therefore, only a wrapped std::unordered_multiset
// can be passed.
-// -- std::unordered_multiset<T> f(), const std::unordered_multiset<T>& f():
-// the set is returned by copy; therefore, a sequence of T:s
+// -- std::unordered_multiset<Key> f(), const std::unordered_multiset<Key>& f():
+// the set is returned by copy; therefore, a sequence of Key:s
// is returned which is most easily used in other functions
-// -- std::unordered_multiset<T>& f(), std::unordered_multiset<T>* f():
+// -- std::unordered_multiset<Key>& f(), std::unordered_multiset<Key>* f():
// the set is returned by reference; therefore, a wrapped std::unordered_multiset
// is returned
-// -- const std::unordered_multiset<T>* f(), f(const std::unordered_multiset<T>*):
+// -- const std::unordered_multiset<Key>* f(), f(const std::unordered_multiset<Key>*):
// for consistency, they expect and return a plain set pointer.
// ------------------------------------------------------------------------