diff --git a/examples/textures/textures_svg_loading.c b/examples/textures/textures_svg_loading.c index f35d40a4b..434ec7602 100644 --- a/examples/textures/textures_svg_loading.c +++ b/examples/textures/textures_svg_loading.c @@ -52,7 +52,7 @@ int main(void) DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); - //Red boarder to illustrate how the SVG is centered within the specified dimensions + //Red border to illustrate how the SVG is centered within the specified dimensions DrawRectangleLines((screenWidth / 2 - texture.width / 2) - 1, (screenHeight / 2 - texture.height / 2) - 1, texture.width + 2, texture.height + 2, RED); DrawText("this IS a texture loaded from an SVG file!", 300, 410, 10, GRAY);