diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-03-20 14:47:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-03-21 21:08:29 +0100 |
commit | 2326d6a2273e1a5d7c012e0c496fc5275a8e5d94 (patch) | |
tree | ac9aeb201f6bc806a86a8e11a376c823b8ac4f1b /sw/inc | |
parent | 3c6c5ef5d1c4f555b465bf56cf9d99e4d67224cc (diff) |
fix some typos in sw::Ring
introduced by
commit d150ace12b6d8fbb30664d1de1001622720bd53b
Author: Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
Date: Fri Dec 5 03:54:55 2014 +0100
stick to code conventions for new code
Change-Id: I97b257b85fba5734c6f5dedb141c448e6d30ee46
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165058
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ring.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/ring.hxx b/sw/inc/ring.hxx index e152899ec87a..194ed47db10b 100644 --- a/sw/inc/ring.hxx +++ b/sw/inc/ring.hxx @@ -144,7 +144,7 @@ namespace sw } /** - * helper class that provides Svalue_typeL-style container iteration to the ring + * helper class that provides STL-style container iteration to the ring */ template <typename value_type> class SAL_WARN_UNUSED RingContainer final @@ -226,7 +226,7 @@ namespace sw value_type& dereference() const { return m_pCurrent ? *m_pCurrent : * m_pStart; } /** - * value_type is: + * This is: * - pointing to the current item in the iteration in general * - nullptr if on the first item (begin()) * - m_pStart when beyond the last item (end()) |