Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-04 05:29:30 +0300
committerCampbell Barton <campbell@blender.org>2022-04-04 05:35:33 +0300
commit85a0115c4470e7a2170d96b7bdafb0f98d57fe05 (patch)
tree7cc0fdbbdadead3176a5fc280b202100033f7190 /source
parent27fea7a3a57e944a318dddd8f63736218576df01 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/curve/editcurve_pen.c2
-rw-r--r--source/blender/makesdna/DNA_space_types.h6
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/curve/editcurve_pen.c b/source/blender/editors/curve/editcurve_pen.c
index 9f623651c8c..ec3d7f52bcf 100644
--- a/source/blender/editors/curve/editcurve_pen.c
+++ b/source/blender/editors/curve/editcurve_pen.c
@@ -100,7 +100,7 @@ typedef struct CurvePenData {
bool multi_point;
/* Whether a point has already been selected. */
bool selection_made;
- /* Whether a shift-click occured. */
+ /* Whether a shift-click occurred. */
bool select_multi;
/* Whether the current handle type of the moved handle is free. */
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index e9bf3126c97..9ac9bdbf799 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -394,9 +394,9 @@ typedef enum eSpaceOutliner_Mode {
/** #SpaceOutliner.outlinevis */
typedef enum eSpaceOutliner_LibOverrideViewMode {
- /* View all overrides with RNA buttons to edit the overridden values. */
+ /** View all overrides with RNA buttons to edit the overridden values. */
SO_LIB_OVERRIDE_VIEW_PROPERTIES = 0,
- /* View entire override hierarchies (relationships between overriden data-blocks). */
+ /** View entire override hierarchies (relationships between overridden data-blocks). */
SO_LIB_OVERRIDE_VIEW_HIERARCHIES = 1,
} eSpaceOutliner_LibOverrideViewMode;
@@ -517,7 +517,7 @@ typedef enum eGraphEdit_Mode {
typedef enum eGraphEdit_Runtime_Flag {
/** Temporary flag to force channel selections to be synced with main. */
SIPO_RUNTIME_FLAG_NEED_CHAN_SYNC = (1 << 0),
- /** Temporary flag to force fcurves to recalculate colors. */
+ /** Temporary flag to force F-curves to recalculate colors. */
SIPO_RUNTIME_FLAG_NEED_CHAN_SYNC_COLOR = (1 << 1),
/**
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index ce4b1a193a3..f92ea8df459 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -264,7 +264,7 @@ bool rna_Cache_use_disk_cache_override_apply(Main *UNUSED(bmain),
/* DO NOT call `RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst);`, that would trigger
* the whole 'update from mem point cache' process, ending up in the complete deletion of an
- * existing diskcache if any. */
+ * existing disk-cache if any. */
return true;
}