Cleanup: Grammar in comments

"spend" is a verb, not a noun.
This commit is contained in:
Hans Goudey
2022-12-28 20:39:14 -05:00
parent 3176b113e4
commit c9b06505d8
3 changed files with 4 additions and 4 deletions

View File

@@ -88,9 +88,9 @@ typedef enum eSubdivStatsValue {
typedef struct SubdivStats {
union {
struct {
/* Time spend on creating topology refiner, which includes time
/* Time spent on creating topology refiner, which includes time
* spend on conversion from Blender data to OpenSubdiv data, and
* time spend on topology orientation on OpenSubdiv C-API side. */
* time spent on topology orientation on OpenSubdiv C-API side. */
double topology_refiner_creation_time;
/* Total time spent in BKE_subdiv_to_mesh(). */
double subdiv_to_mesh_time;

View File

@@ -161,7 +161,7 @@ struct Node {
/* Reset counters needed for the current graph evaluation, does not
* touch averaging accumulators. */
void reset_current();
/* Time spend on this node during current graph evaluation. */
/* Time spent on this node during current graph evaluation. */
double current_time;
};
/* Relationships between nodes

View File

@@ -230,7 +230,7 @@ class GeoNodeLog {
/** Warnings generated for that node. */
Vector<NodeWarning> warnings;
/**
* Time spend in that node. For node groups this is the sum of the run times of the nodes
* Time spent in this node. For node groups this is the sum of the run times of the nodes
* inside.
*/
std::chrono::nanoseconds run_time{0};