From a4a9d14ba71100259f19bd62e8c2f27cd8b7862f Mon Sep 17 00:00:00 2001 From: luzpaz Date: Fri, 5 Feb 2021 19:07:03 -0800 Subject: UI: Fix Typos in Comments and Docs Approximately 91 spelling corrections, almost all in comments. Differential Revision: https://developer.blender.org/D10288 Reviewed by Harley Acheson --- source/blender/freestyle/intern/python/BPy_Operators.cpp | 4 ++-- source/blender/freestyle/intern/view_map/ViewMap.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/freestyle') diff --git a/source/blender/freestyle/intern/python/BPy_Operators.cpp b/source/blender/freestyle/intern/python/BPy_Operators.cpp index 5fd02e4a9dd..d911e7db447 100644 --- a/source/blender/freestyle/intern/python/BPy_Operators.cpp +++ b/source/blender/freestyle/intern/python/BPy_Operators.cpp @@ -260,8 +260,8 @@ PyDoc_STRVAR(Operators_sequential_split_doc, "\n" " .. tip::\n" "\n" - " By specifiying a starting and stopping predicate allows\n" - " the chains to overlapp rather than chains partitioning.\n" + " By specifying a starting and stopping predicate allows\n" + " the chains to overlap rather than chains partitioning.\n" "\n" " :arg starting_pred: The predicate on a point that expresses the\n" " starting condition. Each time this condition is verified, a new chain begins\n" diff --git a/source/blender/freestyle/intern/view_map/ViewMap.h b/source/blender/freestyle/intern/view_map/ViewMap.h index 1c959c43481..47a2e98418a 100644 --- a/source/blender/freestyle/intern/view_map/ViewMap.h +++ b/source/blender/freestyle/intern/view_map/ViewMap.h @@ -228,7 +228,7 @@ class ViewMap { */ ViewVertex *InsertViewVertex(SVertex *iVertex, vector &newViewEdges); - /* connects a FEdge to the graph trough a SVertex */ + /* connects a FEdge to the graph through a SVertex */ // FEdge *Connect(FEdge *ioEdge, SVertex *ioVertex); /* Clean temporary FEdges created by chaining */ @@ -1085,13 +1085,13 @@ class ViewEdge : public Interface1D { return __B; } - /*! Returns the first FEdge that constitues this ViewEdge. */ + /*! Returns the first FEdge that constitutes this ViewEdge. */ inline FEdge *fedgeA() { return _FEdgeA; } - /*! Returns the last FEdge that constitues this ViewEdge. */ + /*! Returns the last FEdge that constitutes this ViewEdge. */ inline FEdge *fedgeB() { return _FEdgeB; -- cgit v1.2.3