diff options
| author | Benjamin Thomas <[email protected]> | 2023-04-15 10:55:40 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-15 10:55:40 +0200 |
| commit | 70d7f67bd87cbb4782217d87312159f42de00948 (patch) | |
| tree | 083887939df26e3dd4eabc5338d00764265bf6d3 /projects | |
| parent | 709b14180a6ed0379c134bd86612994cb2f36f80 (diff) | |
| download | raylib-70d7f67bd87cbb4782217d87312159f42de00948.tar.gz raylib-70d7f67bd87cbb4782217d87312159f42de00948.zip | |
CMake project example: fix a couple of typos (#3014)
Diffstat (limited to 'projects')
| -rw-r--r-- | projects/CMake/core_basic_window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/CMake/core_basic_window.c b/projects/CMake/core_basic_window.c index 4357ae59..0e554296 100644 --- a/projects/CMake/core_basic_window.c +++ b/projects/CMake/core_basic_window.c @@ -3,7 +3,7 @@ * raylib [core] example - Basic window (adapted for HTML5 platform) * * This example is prepared to compile for PLATFORM_WEB, PLATFORM_DESKTOP and PLATFORM_RPI -* As you will notice, code structure is slightly diferent to the other examples... +* As you will notice, code structure is slightly different to the other examples... * To compile it for PLATFORM_WEB just uncomment #define PLATFORM_WEB at beginning * * This example has been created using raylib 1.3 (www.raylib.com) @@ -31,7 +31,7 @@ int screenHeight = 450; void UpdateDrawFrame(void); // Update and Draw one frame //---------------------------------------------------------------------------------- -// Main Enry Point +// Main Entry Point //---------------------------------------------------------------------------------- int main() { @@ -80,4 +80,4 @@ void UpdateDrawFrame(void) EndDrawing(); //---------------------------------------------------------------------------------- -}
\ No newline at end of file +} |
