Cleanup: spelling in comments

This commit is contained in:
Campbell Barton
2024-10-08 09:03:49 +11:00
parent 03d5530788
commit 8c3ef77a35
3 changed files with 4 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ using blender::Span;
using blender::Vector;
/* -------------------------------------------------------------------- */
/** \name Generic Poll Funcitons
/** \name Generic Poll Functions
* \{ */
static bool edbm_vert_or_edge_select_mode_poll(bContext *C)

View File

@@ -118,7 +118,8 @@ void VKScheduler::move_transfer_and_dispatch_outside_rendering_scope(
/* Move buffer update buffer commands to before the rendering scope, unless the buffer is
* already being used by a draw command. Images modification could also be moved outside the
* rendering scope, but it is more tricky as they could also be attached to the framebuffer. */
* rendering scope, but it is more tricky as they could also be attached to the frame-buffer.
*/
pre_rendering_scope.clear();
rendering_scope.clear();
used_buffers.clear();

View File

@@ -746,7 +746,7 @@ void USDStageReader::collect_point_instancer_proto_paths(const pxr::UsdPrim &pri
for (const auto &child_prim : children) {
if (pxr::UsdGeomPointInstancer instancer = pxr::UsdGeomPointInstancer(child_prim)) {
/* We should only collect the prototype paths from this instancer if it would be included
* by our purpose and visiblity checks, matching what is inside #collect_readers. */
* by our purpose and visibility checks, matching what is inside #collect_readers. */
if (!include_by_purpose(instancer)) {
continue;
}