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 <ideasman42@gmail.com>2019-07-02 10:38:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-02 11:05:10 +0300
commit10b694877b1065c262fdce22ab35be4752ad7076 (patch)
treeed7e492014f8407a9106ee5d06162b8d3af3603f /source/blender/blenkernel/intern/undo_system.c
parenta9635c63842d47009cbb9b9de7ca8afa112254bf (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/intern/undo_system.c')
-rw-r--r--source/blender/blenkernel/intern/undo_system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/undo_system.c b/source/blender/blenkernel/intern/undo_system.c
index b33884e4f0e..76b37b940ec 100644
--- a/source/blender/blenkernel/intern/undo_system.c
+++ b/source/blender/blenkernel/intern/undo_system.c
@@ -50,7 +50,7 @@
/** Make sure all ID's created at the point we add an undo step that uses ID's. */
#define WITH_GLOBAL_UNDO_ENSURE_UPDATED
-/** Make sure we don't apply edits ontop of a newer memfile state, see: T56163.
+/** Make sure we don't apply edits on top of a newer memfile state, see: T56163.
* \note Keep an eye on this, could solve differently. */
#define WITH_GLOBAL_UNDO_CORRECT_ORDER
@@ -120,7 +120,7 @@ static const UndoType *BKE_undosys_type_from_context(bContext *C)
/* -------------------------------------------------------------------- */
/** \name Internal Callback Wrappers
*
- * #UndoRefID is simply a way to avoid inlining name copy and lookups,
+ * #UndoRefID is simply a way to avoid in-lining name copy and lookups,
* since it's easy to forget a single case when done inline (crashing in some cases).
*
* \{ */
@@ -550,7 +550,7 @@ bool BKE_undosys_step_push_with_type(UndoStack *ustack,
BLI_strncpy(us->name, name, sizeof(us->name));
}
us->type = ut;
- /* initialized, not added yet. */
+ /* Initialized, not added yet. */
if (!undosys_step_encode(C, G_MAIN, ustack, us)) {
MEM_freeN(us);