From 1bdceb813ccb9690e5746731038e7f0ce92ed134 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 1 Apr 2021 22:20:53 +1100 Subject: Cleanup: spelling --- intern/cycles/kernel/kernel_light_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern') diff --git a/intern/cycles/kernel/kernel_light_common.h b/intern/cycles/kernel/kernel_light_common.h index 1f4aecc0b68..c21c517a353 100644 --- a/intern/cycles/kernel/kernel_light_common.h +++ b/intern/cycles/kernel/kernel_light_common.h @@ -151,8 +151,8 @@ ccl_device float light_spread_attenuation(const float3 D, const float tan_spread, const float normalize_spread) { - /* Model a softbox grid, computing the ratio of light not hidden by the - * slats of the grid at a given angle. (seee D10594). */ + /* Model a soft-box grid, computing the ratio of light not hidden by the + * slats of the grid at a given angle. (see D10594). */ const float cos_a = -dot(D, lightNg); const float sin_a = safe_sqrtf(1.0f - sqr(cos_a)); const float tan_a = sin_a / cos_a; -- cgit v1.2.3