diff --git a/examples/README.md b/examples/README.md
index f6ad6ff27..b564c5ee2 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
level | version
created | last version
updated | original
developer |
|----|----------|--------|:-------------------:|:------------------:|:------------------:|:----------|
| 85 | [models_animation](models/models_animation.c) |
| ⭐️⭐️☆☆ | 2.5 | 3.5 | [culacant](https://github.com/culacant) |
-| 86 | [models_animation_blending](models/models_animation_blending.c) |
| ⭐️⭐️☆☆ | 2.5 | 3.5 | [Kirandeep-Singh-Khehra](https://github.com/Kirandeep-Singh-Khehra) |
+| 86 | [models_animation_blending](models/models_animation_blending.c) |
| ⭐️⭐️☆☆ | 2.5 | 3.5 | [Kirandeep-Singh-Khehra](https://github.com/Kirandeep-Singh-Khehra) |
| 87 | [models_billboard](models/models_billboard.c) |
| ⭐️⭐️⭐️☆ | 1.3 | 3.5 | [Ray](https://github.com/raysan5) |
| 88 | [models_box_collisions](models/models_box_collisions.c) |
| ⭐️☆☆☆ | 1.3 | 3.5 | [Ray](https://github.com/raysan5) |
| 89 | [models_cubicmap](models/models_cubicmap.c) |
| ⭐️⭐️☆☆ | 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 8c5394ac0..43a772756 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 522febb41..0d70c1a88 100644
Binary files a/examples/models/models_animation_blending.png and b/examples/models/models_animation_blending.png differ