diff --git a/examples/README.md b/examples/README.md
index f6ad6ff2..b564c5ee 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -137,7 +137,7 @@ Examples using raylib models functionality, including models loading/generation
 | ## | example  | image  | difficulty<br>level | version<br>created | last version<br>updated | original<br>developer |
 |----|----------|--------|:-------------------:|:------------------:|:------------------:|:----------|
 | 85 | [models_animation](models/models_animation.c) | <img src="models/models_animation.png" alt="models_animation" width="80"> | ⭐️⭐️☆☆ | 2.5 | 3.5 | [culacant](https://github.com/culacant) |
-| 86 | [models_animation_blending](models/models_animation_blending.c) | <img src="models/models_animation_blending.png" alt="models_animation" width="80"> | ⭐️⭐️☆☆ | 2.5 | 3.5 | [Kirandeep-Singh-Khehra](https://github.com/Kirandeep-Singh-Khehra) |
+| 86 | [models_animation_blending](models/models_animation_blending.c) | <img src="models/models_animation_blending.png" alt="models_animation_blending" width="80"> | ⭐️⭐️☆☆ | 2.5 | 3.5 | [Kirandeep-Singh-Khehra](https://github.com/Kirandeep-Singh-Khehra) |
 | 87 | [models_billboard](models/models_billboard.c) | <img src="models/models_billboard.png" alt="models_billboard" width="80"> | ⭐️⭐️⭐️☆ | 1.3 | 3.5 | [Ray](https://github.com/raysan5) |
 | 88 | [models_box_collisions](models/models_box_collisions.c) | <img src="models/models_box_collisions.png" alt="models_box_collisions" width="80"> | ⭐️☆☆☆ | 1.3 | 3.5 | [Ray](https://github.com/raysan5) |
 | 89 | [models_cubicmap](models/models_cubicmap.c) | <img src="models/models_cubicmap.png" alt="models_cubicmap" width="80"> | ⭐️⭐️☆☆ | 1.8 | 3.5 | [Ray](https://github.com/raysan5) |
diff --git a/examples/models/models_animation_blending.c b/examples/models/models_animation_blending.c
index 8c5394ac..43a77275 100644
--- a/examples/models/models_animation_blending.c
+++ b/examples/models/models_animation_blending.c
@@ -115,9 +115,9 @@ int main(void)
                 
             EndMode3D();
 
-            DrawText("Use the U/J Arrow to adjust blend factor", 10, 10, 20, GRAY);
-            DrawText("Use the T/G to switch animation", 10, 30, 20, GRAY);
-            DrawText("Use the Y/H to switch animation", 10, 50, 20, GRAY);
+            DrawText("Use the U/J to adjust blend factor", 10, 10, 20, GRAY);
+            DrawText("Use the T/G to switch first animation", 10, 30, 20, GRAY);
+            DrawText("Use the Y/H to switch second animation", 10, 50, 20, GRAY);
             DrawText(TextFormat("Animations: %s, %s", modelAnimations[animIndex0].name, modelAnimations[animIndex1].name), 10, 70, 20, BLACK);
             DrawText(TextFormat("Blend Factor: %f", blendFactor), 10, 86, 20, BLACK);
 
diff --git a/examples/models/models_animation_blending.png b/examples/models/models_animation_blending.png
index 522febb4..0d70c1a8 100644
Binary files a/examples/models/models_animation_blending.png and b/examples/models/models_animation_blending.png differ