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 <ideasman42@gmail.com>2020-02-15 07:58:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-15 07:58:06 +0300
commitf829fefe8abc1b36e663b794827ce4b2e58f9901 (patch)
tree263a775f3d250b708d99574d19f286f658e9a0ed /source/blender/editors
parent1857548b5c23bcc9c75d47d61a75b17f01b8b0b7 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index e2def28137f..880ad147403 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -2050,8 +2050,8 @@ bool sculpt_search_circle_cb(PBVHNode *node, void *data_v)
const float dist_sq = dist_squared_ray_to_aabb_v3(
data->dist_ray_to_aabb_precalc, bb_min, bb_max, dummy_co, &dummy_depth);
- /* Seems like debug code. Maybe this fucntion can just return true if the node is not fully
- * masked. */
+ /* Seems like debug code.
+ * Maybe this function can just return true if the node is not fully masked. */
return dist_sq < data->radius_squared || true;
}