summaryrefslogtreecommitdiffhomepage
path: root/examples/core/core_custom_logging.c
diff options
context:
space:
mode:
authorhartmannathan <[email protected]>2022-09-08 10:10:15 -0400
committerGitHub <[email protected]>2022-09-08 16:10:15 +0200
commitc1b4881e8a3ea86a3af6c3d5cb15f0a8322dd4b2 (patch)
treea6397ede94ba391e0a7ab97f1179585500fd2613 /examples/core/core_custom_logging.c
parentac1ffbad1d80dc0fcebe4b105347764733b78ff3 (diff)
downloadraylib-c1b4881e8a3ea86a3af6c3d5cb15f0a8322dd4b2.tar.gz
raylib-c1b4881e8a3ea86a3af6c3d5cb15f0a8322dd4b2.zip
examples/core/core_custom_logging.c: Fix typo (#2692)
Diffstat (limited to 'examples/core/core_custom_logging.c')
-rw-r--r--examples/core/core_custom_logging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core/core_custom_logging.c b/examples/core/core_custom_logging.c
index 94a9c658..9794d14b 100644
--- a/examples/core/core_custom_logging.c
+++ b/examples/core/core_custom_logging.c
@@ -18,7 +18,7 @@
#include <stdio.h> // Required for: fopen(), fclose(), fputc(), fwrite(), printf(), fprintf(), funopen()
#include <time.h> // Required for: time_t, tm, time(), localtime(), strftime()
-// Custom logging funtion
+// Custom logging function
void CustomLog(int msgType, const char *text, va_list args)
{
char timeStr[64] = { 0 };