From bda919033dfdd2d0d75b606f3fa29d21f0408ffb Mon Sep 17 00:00:00 2001 From: Abhishek Rathore <59042344+Logicless-Coder@users.noreply.github.com> Date: Fri, 23 Feb 2024 23:47:33 +0530 Subject: [PATCH] Fixed typo in a comment (#3816) (#3817) Fixed a grammatical error by removing "are" to change `... but some are have multiple purposes ...` to `... but some have multiple purposes ...` in `textures/textures_image_generation` --- examples/textures/textures_image_generation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/textures/textures_image_generation.c b/examples/textures/textures_image_generation.c index abde401f7..97e43f007 100644 --- a/examples/textures/textures_image_generation.c +++ b/examples/textures/textures_image_generation.c @@ -13,7 +13,7 @@ #include "raylib.h" -#define NUM_TEXTURES 9 // Currently we have 8 generation algorithms but some are have multiple purposes (Linear and Square Gradients) +#define NUM_TEXTURES 9 // Currently we have 8 generation algorithms but some have multiple purposes (Linear and Square Gradients) //------------------------------------------------------------------------------------ // Program main entry point