[Bf-blender-cvs] [dbee634] master: Fix typos.

Tamito Kajiyama noreply at git.blender.org
Sun May 3 18:54:39 CEST 2015


Commit: dbee63457273f09d9977f0bb0235b4c7b53c8eb0
Author: Tamito Kajiyama
Date:   Sun Mar 8 16:47:30 2015 +0900
Branches: master
https://developer.blender.org/rBdbee63457273f09d9977f0bb0235b4c7b53c8eb0

Fix typos.

===================================================================

M	source/blender/blenkernel/intern/text.c
M	source/blender/python/bmesh/bmesh_py_api.c
M	source/blender/python/mathutils/mathutils_geometry.c

===================================================================

diff --git a/source/blender/blenkernel/intern/text.c b/source/blender/blenkernel/intern/text.c
index 2c58873..1966d5a 100644
--- a/source/blender/blenkernel/intern/text.c
+++ b/source/blender/blenkernel/intern/text.c
@@ -652,7 +652,7 @@ void BKE_text_unlink(Main *bmain, Text *text)
 			}
 		}
 
-		/* Freestyle (while looping oer the scene) */
+		/* Freestyle (while looping over the scene) */
 		for (srl = sce->r.layers.first; srl; srl = srl->next) {
 			for (module = srl->freestyleConfig.modules.first; module; module = module->next) {
 				if (module->script == text)
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index bc14e1a..f74737b 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -108,7 +108,7 @@ PyDoc_STRVAR(bpy_bm_update_edit_mesh_doc,
 "   :type mesh: :class:`bpy.types.Mesh`\n"
 "   :arg tessface: Option to recalculate n-gon tessellation.\n"
 "   :type tessface: boolean\n"
-"   :arg destructive: Use when grometry has been added or removed.\n"
+"   :arg destructive: Use when geometry has been added or removed.\n"
 "   :type destructive: boolean\n"
 );
 static PyObject *bpy_bm_update_edit_mesh(PyObject *UNUSED(self), PyObject *args, PyObject *kw)
diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c
index bb4080d..ae5c058 100644
--- a/source/blender/python/mathutils/mathutils_geometry.c
+++ b/source/blender/python/mathutils/mathutils_geometry.c
@@ -850,7 +850,7 @@ PyDoc_STRVAR(M_Geometry_intersect_point_quad_2d_doc,
 "\n"
 "   Takes 5 vectors (using only the x and y coordinates): one is the point and the next 4 define the quad, \n"
 "   only the x and y are used from the vectors. Returns 1 if the point is within the quad, otherwise 0.\n"
-"   Works only with convex quads without singular edges."
+"   Works only with convex quads without singular edges.\n"
 "\n"
 "   :arg pt: Point\n"
 "   :type pt: :class:`mathutils.Vector`\n"




More information about the Bf-blender-cvs mailing list