From bedbfa33632cb0fc1f4ee162a0311a5c36a4d97d Mon Sep 17 00:00:00 2001 From: Brian-ED Date: Mon, 22 Jan 2024 00:51:21 +0000 Subject: [PATCH] fixed small typo, replaced `th` with `the` --- src/rlgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlgl.h b/src/rlgl.h index 4d2c9702f..747025b83 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