This commit is contained in:
2020-08-03 09:04:50 +03:00
parent 427e7411c1
commit e8a066abcd

View File

@@ -309,7 +309,7 @@
* m[2] = "two";
* m[4] = "four";
*
* PIMapIterator<int, PIString> it(m);
* auto it = m.makeIterator();
* while (it.next()) {
* piCout << it.key() << it.value();
* }
@@ -324,9 +324,9 @@
* it.next();
* \endcode
*
* Using map method:
* Using constructor:
* \code
* auto it = m.makeIterator();
* PIMapIterator<int, PIString> it(m);
* \endcode
*
* Write access: