From 92826a921c2f17318bafa4d9dd4b7b7e1ba9c73d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 13 Jan 2021 13:21:29 +1100 Subject: Cleanup: spelling --- source/blender/blenkernel/intern/nla.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenkernel/intern/nla.c') diff --git a/source/blender/blenkernel/intern/nla.c b/source/blender/blenkernel/intern/nla.c index ecafc76c84d..63b14c30b3c 100644 --- a/source/blender/blenkernel/intern/nla.c +++ b/source/blender/blenkernel/intern/nla.c @@ -296,8 +296,8 @@ NlaTrack *BKE_nlatrack_add(AnimData *adt, NlaTrack *prev, const bool is_liboverr nlt->flag = NLATRACK_SELECTED | NLATRACK_OVERRIDELIBRARY_LOCAL; nlt->index = BLI_listbase_count(&adt->nla_tracks); - /* In liboverride case, we only add local tracks after all those comming from the linked data, so - * we need to find the first local track. */ + /* In liboverride case, we only add local tracks after all those coming from the linked data, + * so we need to find the first local track. */ if (is_liboverride && prev != NULL && (prev->flag & NLATRACK_OVERRIDELIBRARY_LOCAL) == 0) { NlaTrack *first_local = prev->next; for (; first_local != NULL && (first_local->flag & NLATRACK_OVERRIDELIBRARY_LOCAL) == 0; -- cgit v1.2.3