[Bf-blender-cvs] [a344a1cbe8b] soc-2020-io-performance: Grammar fixes in comments.

Ankit Meel noreply at git.blender.org
Mon Jul 6 12:08:46 CEST 2020


Commit: a344a1cbe8b0aa1f7921e656f65f1abd019169fb
Author: Ankit Meel
Date:   Mon Jul 6 15:38:42 2020 +0530
Branches: soc-2020-io-performance
https://developer.blender.org/rBa344a1cbe8b0aa1f7921e656f65f1abd019169fb

Grammar fixes in comments.

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

M	source/blender/io/wavefront_obj/intern/wavefront_obj_exporter_mesh.cc

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

diff --git a/source/blender/io/wavefront_obj/intern/wavefront_obj_exporter_mesh.cc b/source/blender/io/wavefront_obj/intern/wavefront_obj_exporter_mesh.cc
index d5880e7f6a0..19a3970241b 100644
--- a/source/blender/io/wavefront_obj/intern/wavefront_obj_exporter_mesh.cc
+++ b/source/blender/io/wavefront_obj/intern/wavefront_obj_exporter_mesh.cc
@@ -55,10 +55,11 @@ OBJMesh::OBJMesh(Depsgraph *depsgraph, const OBJExportParams &export_params, Obj
   mesh_eval_needs_free_ = false;
 
   if (!export_mesh_eval_) {
-    /* Curves and nurbs surfaces need a new mesh when exported in the form of vertices and edges.
+    /* Curves and nurbs surfaces need a new mesh when they're exported in the form of vertices and
+     * edges.
      */
     export_mesh_eval_ = BKE_mesh_new_from_object(depsgraph_, export_object_eval_, true);
-    /* Since new mesh been allocated, needs to be freed in destructor. */
+    /* Since a new mesh been allocated, it needs to be freed in the destructor. */
     mesh_eval_needs_free_ = true;
   }
 
@@ -101,7 +102,7 @@ OBJMesh::~OBJMesh()
 }
 
 /**
- * Triangulate and update _export_mesh_eval.
+ * Triangulate and update OBJMesh evaluated mesh.
  * \note The new mesh created here needs to be freed.
  */
 void OBJMesh::triangulate_mesh_eval()



More information about the Bf-blender-cvs mailing list