From 701767a6175c1ebf929a6c030e74b03f5b24efac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sat, 15 Jul 2023 23:11:07 +0200 Subject: [PATCH] Fix doc typo (#9162) # Objective - Fix a minor doc typo ## Solution - Fix the typo! --- crates/bevy_render/src/mesh/morph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/src/mesh/morph.rs b/crates/bevy_render/src/mesh/morph.rs index c6eba94b47..be52d1f59b 100644 --- a/crates/bevy_render/src/mesh/morph.rs +++ b/crates/bevy_render/src/mesh/morph.rs @@ -104,7 +104,7 @@ impl MorphTargetImage { } /// Controls the [morph targets] for all child [`Handle`] entities. In most cases, [`MorphWeights`] should be considered -/// the "source o[f truth" when writing morph targets for meshes. However you can choose to write child [`MeshMorphWeights`] +/// the "source of truth" when writing morph targets for meshes. However you can choose to write child [`MeshMorphWeights`] /// if your situation requires more granularity. Just note that if you set [`MorphWeights`], it will overwrite child /// [`MeshMorphWeights`] values. ///