summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes
diff options
context:
space:
mode:
authorDor Shapira <[email protected]>2022-10-26 18:14:52 +0300
committerGitHub <[email protected]>2022-10-26 17:14:52 +0200
commitbcb47255b98773a1f5e810c5a1944ffa968d4d97 (patch)
treef62ef955ff1e0de9976cbd978059856569dea48a /examples/shapes
parentbc60812d68c51b37e1816660a6e4e82d6497732d (diff)
downloadraylib-bcb47255b98773a1f5e810c5a1944ffa968d4d97.tar.gz
raylib-bcb47255b98773a1f5e810c5a1944ffa968d4d97.zip
fixing typo (#2781)
fixing typo
Diffstat (limited to 'examples/shapes')
-rw-r--r--examples/shapes/shapes_basic_shapes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shapes/shapes_basic_shapes.c b/examples/shapes/shapes_basic_shapes.c
index d06c2ee1..edc0b0c6 100644
--- a/examples/shapes/shapes_basic_shapes.c
+++ b/examples/shapes/shapes_basic_shapes.c
@@ -51,7 +51,7 @@ int main(void)
DrawCircleGradient(screenWidth/5, 220, 60, GREEN, SKYBLUE);
DrawCircleLines(screenWidth/5, 340, 80, DARKBLUE);
- // Rectangle shapes and ines
+ // Rectangle shapes and lines
DrawRectangle(screenWidth/4*2 - 60, 100, 120, 60, RED);
DrawRectangleGradientH(screenWidth/4*2 - 90, 170, 180, 130, MAROON, GOLD);
DrawRectangleLines(screenWidth/4*2 - 40, 320, 80, 60, ORANGE); // NOTE: Uses QUADS internally, not lines
@@ -83,4 +83,4 @@ int main(void)
//--------------------------------------------------------------------------------------
return 0;
-} \ No newline at end of file
+}