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-01-26 08:06:22 +0300
committerCampbell Barton <campbell@blender.org>2022-01-26 08:06:22 +0300
commitb06fff4737e5a18bb999f6633c7df67dda63ace7 (patch)
treeb2efcf91d1d2e2c2119b9176393469f56006548f /intern/cycles
parent94d2a611ec0cb66d24828aa8d21e5a1173cc8c13 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'intern/cycles')
-rw-r--r--intern/cycles/util/math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/math.h b/intern/cycles/util/math.h
index 18b60b70a4b..605a19aaef0 100644
--- a/intern/cycles/util/math.h
+++ b/intern/cycles/util/math.h
@@ -401,7 +401,7 @@ ccl_device_inline float fractf(float x)
return x - floorf(x);
}
-/* Adapted from godot-engine math_funcs.h. */
+/* Adapted from `godot-engine` math_funcs.h. */
ccl_device_inline float wrapf(float value, float max, float min)
{
float range = max - min;