Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-03-15 20:29:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-03-15 20:31:13 +0300
commitdf34f4f1db405c5b8deeb03db0937bee9ba81f42 (patch)
tree7daaac24ea36db57a8ae0095e5b818190dde4910 /greasepencil_tools/rotate_canvas.py
parent2502531bb4ab4a76a876c003dab34951da31e1eb (diff)
Cleanup: fix source comment typos
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D14312
Diffstat (limited to 'greasepencil_tools/rotate_canvas.py')
-rw-r--r--greasepencil_tools/rotate_canvas.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/greasepencil_tools/rotate_canvas.py b/greasepencil_tools/rotate_canvas.py
index 6db43234..a733eb2d 100644
--- a/greasepencil_tools/rotate_canvas.py
+++ b/greasepencil_tools/rotate_canvas.py
@@ -251,7 +251,7 @@ class RC_OT_RotateCanvas(bpy.types.Operator):
self.pos_current = mathutils.Vector((event.mouse_region_x, event.mouse_region_y))
self.initial_pos = self.pos_current# for draw debug, else no need
- # Calculate inital vector
+ # Calculate initial vector
self.vector_initial = self.pos_current - self.center
self.vector_initial.normalize()