svx/source/customshapes/EnhancedCustomShapeFontWork.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f17b89b9e4d1e5c1cf608a2ce1ed218917e3447b
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Wed Nov 22 16:16:49 2023 +0100
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Wed Nov 22 21:04:58 2023 +0100

    Fix typo
    
    Change-Id: I66cb84da082a7498b1c6a79e989dd94d9f7b1b56
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159828
    Tested-by: Julien Nabet <serval2...@yahoo.fr>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx 
b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
index 2d86e99073c2..2e19aa344ec4 100644
--- a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
@@ -832,8 +832,8 @@ static void FitTextOutlinesToShapeOutlines(const 
tools::PolyPolygon& aOutlines2d
                         sal_uInt16 i;
                         for (i = 0; i < nPointCount; i++)
                         {
-                            //Normal vector for a point will be calculated 
from its neightbour points
-                            //except if is in the start/end of the vector
+                            //Normal vector for a point will be calculated 
from its neighbour points
+                            //except if it is in the start/end of the vector
                             sal_uInt16 nPointIdx1 = i == 0 ? i : i - 1;
                             sal_uInt16 nPointIdx2 = i == nPointCount - 1 ? i : 
i + 1;
 

Reply via email to