Remove a backtick in Compact_container doc

This commit is contained in:
Andreas Fabri 2023-03-17 16:51:09 +01:00
parent 56937801d5
commit 0f6b544e2e
2 changed files with 2 additions and 2 deletions

View File

@ -670,7 +670,7 @@ void clear();
bool owns(const_iterator pos);
/*!
* returns whether `pos` is in the range `[cc.begin(), cc`.end())` (`cc.end()` excluded).
* returns whether `pos` is in the range `[cc.begin(), cc.end())` (`cc.end()` excluded).
*/
bool owns_dereferencable(const_iterator pos);

View File

@ -293,7 +293,7 @@ complexity. No exception is thrown.
/// @{
/// returns whether `pos` is in the range `[ccc.begin(), ccc.end()]` (`ccc.end()` included).
bool owns(const_iterator pos);
/// returns whether `pos` is in the range `[ccc.begin(), ccc`.end())` (`ccc.end()` excluded).
/// returns whether `pos` is in the range `[ccc.begin(), ccc.end())` (`ccc.end()` excluded).
bool owns_dereferencable(const_iterator pos);
/// @}