From 1411118055368022cf466448d4da8494d05e02c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 24 Oct 2021 19:31:08 +1100 Subject: Cleanup: spelling in comments --- intern/cycles/render/osl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern') diff --git a/intern/cycles/render/osl.cpp b/intern/cycles/render/osl.cpp index 77863fa0137..dd8f1b31177 100644 --- a/intern/cycles/render/osl.cpp +++ b/intern/cycles/render/osl.cpp @@ -640,7 +640,7 @@ string OSLCompiler::compatible_name(ShaderNode *node, ShaderInput *input) string sname(input->name().string()); size_t i; - /* strip whitespace */ + /* Strip white-space. */ while ((i = sname.find(" ")) != string::npos) sname.replace(i, 1, ""); @@ -660,7 +660,7 @@ string OSLCompiler::compatible_name(ShaderNode *node, ShaderOutput *output) string sname(output->name().string()); size_t i; - /* strip whitespace */ + /* Strip white-space. */ while ((i = sname.find(" ")) != string::npos) sname.replace(i, 1, ""); -- cgit v1.2.3