From 16afff2ddc4580cfe3a952c3e60e0950ae0487b6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 20 Apr 2022 09:16:24 +1000 Subject: Cleanup: spelling in comments --- source/blender/editors/animation/keyframing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/animation') diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 5b742ddf272..14a3b958ea6 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -1126,17 +1126,17 @@ static void get_keyframe_values_create_reports(ReportList *reports, for (int i = 0; i < count; i++) { const bool cur_index_evaluated = ELEM(index, i, -1) || force_all; if (!cur_index_evaluated) { - /* values[i] was never intended to be remapped. */ + /* `values[i]` was never intended to be remapped. */ continue; } if (BLI_BITMAP_TEST_BOOL(successful_remaps, i)) { - /* values[i] succesfully remapped. */ + /* `values[i]` successfully remapped. */ continue; } total_failed++; - /* Report that values[i] were intended to be remapped but failed remapping process. */ + /* Report that `values[i]` were intended to be remapped but failed remapping process. */ BLI_dynstr_appendf(ds_failed_indices, "%d, ", i); } -- cgit v1.2.3