diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 1d917a46313..678b4c6f3aa 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -1623,7 +1623,7 @@ def pyrna2sphinx(basepath): fw(" .. data:: {:s}\n".format(identifier)) else: fw(" .. attribute:: {:s}\n".format(identifier)) - # Also write `noindex` on requerst. + # Also write `noindex` on request. if ("bpy.types", struct_id, identifier) in RST_NOINDEX_ATTR: fw(" :noindex:\n") fw("\n") diff --git a/scripts/modules/bpy_extras/anim_utils.py b/scripts/modules/bpy_extras/anim_utils.py index 9b5899a8b60..41dc9d58da3 100644 --- a/scripts/modules/bpy_extras/anim_utils.py +++ b/scripts/modules/bpy_extras/anim_utils.py @@ -120,7 +120,7 @@ def bake_action_objects( :arg bake_options: Options for baking. :type bake_options: :class:`anim_utils.BakeOptions` - :return: A sequence of Action or None types (aligned with `object_action_pairs`) + :return: A sequence of Action or None types (aligned with ``object_action_pairs``) :rtype: Sequence[:class:`bpy.types.Action`] """ if not (bake_options.do_pose or bake_options.do_object): diff --git a/source/blender/draw/engines/eevee_next/eevee_pipeline.cc b/source/blender/draw/engines/eevee_next/eevee_pipeline.cc index 53647ec6c0f..22b5f9410e4 100644 --- a/source/blender/draw/engines/eevee_next/eevee_pipeline.cc +++ b/source/blender/draw/engines/eevee_next/eevee_pipeline.cc @@ -596,7 +596,7 @@ void DeferredLayer::end_sync(bool is_first_pass, GPU_ATTACHMENT_IGNORE}); sub.shader_set(sh); if (GPU_stencil_clasify_buffer_workaround()) { - /* Binding any buffer to satify the binding. The buffer is not actually used. */ + /* Binding any buffer to satisfy the binding. The buffer is not actually used. */ sub.bind_ssbo("dummy_workaround_buf", &inst_.film.aovs_info); } sub.state_set(DRW_STATE_WRITE_STENCIL | DRW_STATE_STENCIL_ALWAYS); diff --git a/source/blender/editors/transform/transform_snap_animation.cc b/source/blender/editors/transform/transform_snap_animation.cc index 0a3a14bdf67..53f4585f779 100644 --- a/source/blender/editors/transform/transform_snap_animation.cc +++ b/source/blender/editors/transform/transform_snap_animation.cc @@ -78,8 +78,8 @@ static void transform_snap_anim_flush_data_ex( AnimData *adt = nullptr; if (!ELEM(t->spacetype, SPACE_NLA, SPACE_SEQ) && !(td->flag & TD_GREASE_PENCIL_FRAME)) { - /* TD_GREASE_PENCIL_FRAME stores blender::bke::greasepencil::Layer* in - * td->extra, and not the AnimData. */ + /* #TD_GREASE_PENCIL_FRAME stores #blender::bke::greasepencil::Layer* in + * `td->extra`, and not the #AnimData. */ adt = static_cast(td->extra); }