From 92fbcbb4bf0ec613907ebf20c3874ce684243e86 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 16 Jan 2017 17:55:41 +0100 Subject: [PATCH] Cycles: Cleanup, spelling --- intern/cycles/bvh/bvh_build.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp index 038070cba4c..8cf1495b33d 100644 --- a/intern/cycles/bvh/bvh_build.cpp +++ b/intern/cycles/bvh/bvh_build.cpp @@ -925,7 +925,7 @@ BVHNode* BVHBuild::create_leaf_node(const BVHRange& range, BVHNode *inner = new InnerNode(inner_bounds, leaves[1], leaves[2]); return new InnerNode(range.bounds(), leaves[0], inner); } else { - /* Shpuld be doing more branches if more primitive types added. */ + /* Should be doing more branches if more primitive types added. */ assert(num_leaves <= 5); BoundBox inner_bounds_a = merge(leaves[0]->m_bounds, leaves[1]->m_bounds); BoundBox inner_bounds_b = merge(leaves[2]->m_bounds, leaves[3]->m_bounds);