summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorBrian E <[email protected]>2024-01-22 10:36:38 +0000
committerGitHub <[email protected]>2024-01-22 11:36:38 +0100
commit27645e16ab5051b8cf7bb5b6506b16b20f0b1c19 (patch)
treeb5fc12b640682bd51782ef6c63d59e6a36b85255 /src
parentef92ced370815a47d6d417ce6394b3156dd4f528 (diff)
downloadraylib-27645e16ab5051b8cf7bb5b6506b16b20f0b1c19.tar.gz
raylib-27645e16ab5051b8cf7bb5b6506b16b20f0b1c19.zip
fixed small typo, replaced `th` with `the` (#3752)
Diffstat (limited to 'src')
-rw-r--r--src/rlgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 4d2c9702..747025b8 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -115,7 +115,7 @@
#if defined(_WIN32) && defined(BUILD_LIBTYPE_SHARED)
#define RLAPI __declspec(dllexport) // We are building the library as a Win32 shared library (.dll)
#elif defined(BUILD_LIBTYPE_SHARED)
- #define RLAPI __attribute__((visibility("default"))) // We are building he library as a Unix shared library (.so/.dylib)
+ #define RLAPI __attribute__((visibility("default"))) // We are building the library as a Unix shared library (.so/.dylib)
#elif defined(_WIN32) && defined(USE_LIBTYPE_SHARED)
#define RLAPI __declspec(dllimport) // We are using the library as a Win32 shared library (.dll)
#endif