Corrected O(1) -> O(log n) in comment

release/4.3a0
Richard Roberts 2011-10-12 07:52:11 +00:00
parent d343c1f09a
commit c2aee8668e
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public:
value_type pop_back();
/** Remove the last-ordered symbol from the ordering (this version is
* \f$ O(1) \f$, use it if you already know the last-ordered key).
* \f$ O(\log n) \f$, use it if you already know the last-ordered key).
*
* Throws std::invalid_argument if the requested key is not actually the
* last-ordered.