[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49975] trunk/blender/source/blender/ blenkernel/intern/mesh.c: Fix for some typos/spelling mistakes

Joshua Leung aligorith at gmail.com
Sat Aug 18 05:55:29 CEST 2012


Revision: 49975
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49975
Author:   aligorith
Date:     2012-08-18 03:55:19 +0000 (Sat, 18 Aug 2012)
Log Message:
-----------
Fix for some typos/spelling mistakes

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/mesh.c

Modified: trunk/blender/source/blender/blenkernel/intern/mesh.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/mesh.c	2012-08-18 03:32:28 UTC (rev 49974)
+++ trunk/blender/source/blender/blenkernel/intern/mesh.c	2012-08-18 03:55:19 UTC (rev 49975)
@@ -1846,7 +1846,7 @@
 		return;
 	}
 
-	/* if we are not calculating verts and no verts were passes thene we have nothign to do */
+	/* if we are not calculating verts and no verts were passes then we have nothing to do */
 	if ((only_face_normals == TRUE) && (polyNors_r == NULL) && (faceNors_r == NULL)) {
 		printf("%s: called with nothing to do\n", __func__);
 		return;
@@ -1910,7 +1910,7 @@
 
 	if (!pnors) pnors = MEM_callocN(sizeof(float) * 3 * numPolys, "poly_nors mesh.c");
 
-	/*first go through and calculate normals for all the polys*/
+	/* first go through and calculate normals for all the polys */
 	tnorms = MEM_callocN(sizeof(float) * 3 * numVerts, "tnorms mesh.c");
 
 	mp = mpolys;




More information about the Bf-blender-cvs mailing list