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:
authorSergey Sharybin <sergey@blender.org>2021-10-11 13:29:05 +0300
committerSergey Sharybin <sergey@blender.org>2021-10-11 15:01:42 +0300
commit275d0d33971872b356a6356a4996604aac98b554 (patch)
tree8637a9099f0533a2abae010cc568a3fa679c104e /intern/cycles/util
parenteca2a419648a9e4288f56b921dabafed0cb97526 (diff)
Cleanup: Spelling in comment
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_string.cpp b/intern/cycles/util/util_string.cpp
index 9c0b2ca50bb..0fc9cb4ae77 100644
--- a/intern/cycles/util/util_string.cpp
+++ b/intern/cycles/util/util_string.cpp
@@ -153,7 +153,7 @@ string string_remove_trademark(const string &s)
{
string result = s;
- /* Special case, so we don;t leave sequential spaces behind. */
+ /* Special case, so we don't leave sequential spaces behind. */
/* TODO(sergey): Consider using regex perhaps? */
string_replace(result, " (TM)", "");
string_replace(result, " (R)", "");