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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
commitadcce654e38307b180ebdfa3699a80018ac95f63 (patch)
tree67ae5a9673e33290da6a4c17f4e2d8d23532b5a7 /source/blender/blenkernel/intern/fcurve_cache.c
parent549f68149d8d5a90067d3488ebffb522ff6c3d8c (diff)
Cleanup: Use correct capitalization of "F-Curve"
Diffstat (limited to 'source/blender/blenkernel/intern/fcurve_cache.c')
-rw-r--r--source/blender/blenkernel/intern/fcurve_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/fcurve_cache.c b/source/blender/blenkernel/intern/fcurve_cache.c
index d67a0ad0e1b..e3b9c4aa10b 100644
--- a/source/blender/blenkernel/intern/fcurve_cache.c
+++ b/source/blender/blenkernel/intern/fcurve_cache.c
@@ -71,7 +71,7 @@ struct FCurvePathCache *BKE_fcurve_pathcache_create(ListBase *list)
}
qsort(fcurve_array, fcurve_array_len, sizeof(FCurve *), fcurve_cmp_for_cache);
- /* Allow for the case no F-curves share an RNA-path, otherwise this is over-allocated.
+ /* Allow for the case no F-Curves share an RNA-path, otherwise this is over-allocated.
* Although in practice it's likely to only be 3-4x as large as is needed
* (with transform channels for e.g.). */
struct FCurvePathCache_Span *span_table = MEM_mallocN(sizeof(*span_table) * fcurve_array_len,