From 6d7056ab6e342fba9a62ecfa2efd132ffe2e403a Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 30 Jun 2022 17:20:39 +0200 Subject: Cleanup: fix various typos Contributed by luzpaz. Differential Revision: https://developer.blender.org/D15328 --- mesh_tissue/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesh_tissue/utils.py') diff --git a/mesh_tissue/utils.py b/mesh_tissue/utils.py index b617ac93..b4331084 100644 --- a/mesh_tissue/utils.py +++ b/mesh_tissue/utils.py @@ -1251,7 +1251,7 @@ def get_weight(vertex_group, n_verts): :type vertex_group: :class:'bpy.types.VertexGroup' :arg n_verts: Number of Vertices (output list size). :type n_verts: int - :return: Readed weight values. + :return: Read weight values. :rtype: list """ weight = [0]*n_verts @@ -1267,7 +1267,7 @@ def get_weight_numpy(vertex_group, n_verts): :type vertex_group: :class:'bpy.types.VertexGroup' :arg n_verts: Number of Vertices (output list size). :type n_verts: int - :return: Readed weight values as numpy array. + :return: Read weight values as numpy array. :rtype: :class:'numpy.ndarray' """ weight = [0]*n_verts -- cgit v1.2.3