diff --git a/source/blender/blenlib/intern/convexhull_2d.cc b/source/blender/blenlib/intern/convexhull_2d.cc index f1aa3664578..62f4d2b83e2 100644 --- a/source/blender/blenlib/intern/convexhull_2d.cc +++ b/source/blender/blenlib/intern/convexhull_2d.cc @@ -240,7 +240,7 @@ int BLI_convexhull_2d(blender::Span points, int r_points[]) /** \} */ /* -------------------------------------------------------------------- */ -/** \name Comupte AABB Fitting Angle (For Assertion) +/** \name Compute AABB Fitting Angle (For Assertion) * \{ */ #if defined(USE_BRUTE_FORCE_ASSERT) && !defined(NDEBUG) @@ -552,7 +552,7 @@ static void convexhull_2d_angle_iter_step(HullAngleIter &hiter) /** \} */ /* -------------------------------------------------------------------- */ -/** \name Comupte AABB Fitting Angle (Optimized) +/** \name Compute AABB Fitting Angle (Optimized) * \{ */ /** diff --git a/source/blender/editors/space_image/image_buttons.cc b/source/blender/editors/space_image/image_buttons.cc index 56105e01d70..7429d6c0ffd 100644 --- a/source/blender/editors/space_image/image_buttons.cc +++ b/source/blender/editors/space_image/image_buttons.cc @@ -993,8 +993,8 @@ void uiTemplateImageSettings(uiLayout *layout, PointerRNA *imfptr, bool color_ma col->prop(imfptr, "media_type", UI_ITEM_NONE, std::nullopt, ICON_NONE); - /* Multi layer images and video media types only have a single supported format, so we needn't - * draw the format format enum. */ + /* Multi layer images and video media types only have a single supported format, + * so we needn't draw the format enum. */ if (imf->media_type == MEDIA_TYPE_IMAGE) { col->prop(imfptr, "file_format", UI_ITEM_NONE, std::nullopt, ICON_NONE); }