From 2326d6a2273e1a5d7c012e0c496fc5275a8e5d94 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Mar 2024 14:47:34 +0200 Subject: [PATCH] fix some typos in sw::Ring introduced by commit d150ace12b6d8fbb30664d1de1001622720bd53b Author: Bjoern Michaelsen 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 --- sw/inc/ring.hxx | 4 ++-- 1 file 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 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())