Cleanup: Grammar in comments
"spend" is a verb, not a noun.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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};
|
||||
|
||||
Reference in New Issue
Block a user