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
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-16 03:37:34 +0300
committerCampbell Barton <campbell@blender.org>2022-08-16 03:38:26 +0300
commit9d9c05a10106ea08cf5082633a5dd0a007d860ba (patch)
treeafe19a289ff052a3f51bc0369d64e62a54f4c2a9 /source/blender/editors
parentc4eb70e54390083a8f2d98fa1eeed68eaeafa5ff (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/include/ED_sculpt.h5
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h7
2 files changed, 7 insertions, 5 deletions
diff --git a/source/blender/editors/include/ED_sculpt.h b/source/blender/editors/include/ED_sculpt.h
index 5efeeaa29e1..1e220d33ff4 100644
--- a/source/blender/editors/include/ED_sculpt.h
+++ b/source/blender/editors/include/ED_sculpt.h
@@ -42,9 +42,10 @@ void ED_sculpt_end_transform(struct bContext *C, struct Object *ob);
/** Export for ED_undo_sys. */
void ED_sculpt_undosys_type(struct UndoType *ut);
-/* Pushes an undo step using the operator name. This is necassary for
+/**
+ * Pushes an undo step using the operator name. This is necessary for
* redo panels to work; operators that do not support that may use
- * ED_sculpt_undo_geometry_begin_ex instead if so desired.
+ * #ED_sculpt_undo_geometry_begin_ex instead if so desired.
*/
void ED_sculpt_undo_geometry_begin(struct Object *ob, const struct wmOperator *op);
void ED_sculpt_undo_geometry_begin_ex(struct Object *ob, const char *name);
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index d9f40fedf2b..e4bba135518 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -1493,14 +1493,15 @@ SculptUndoNode *SCULPT_undo_push_node(Object *ob, PBVHNode *node, SculptUndoType
SculptUndoNode *SCULPT_undo_get_node(PBVHNode *node, SculptUndoType type);
SculptUndoNode *SCULPT_undo_get_first_node(void);
-/* Pushes an undo step using the operator name. This is necassary for
+/**
+ * Pushes an undo step using the operator name. This is necessary for
* redo panels to work; operators that do not support that may use
- * SCULPT_undo_push_begin_ex instead if so desired.
+ * #SCULPT_undo_push_begin_ex instead if so desired.
*/
void SCULPT_undo_push_begin(struct Object *ob, const struct wmOperator *op);
/**
- * NOTE: SCULPT_undo_push_begin is preferred since `name`
+ * NOTE: #SCULPT_undo_push_begin is preferred since `name`
* must match operator name for redo panels to work.
*/
void SCULPT_undo_push_begin_ex(struct Object *ob, const char *name);