From c1b4881e8a3ea86a3af6c3d5cb15f0a8322dd4b2 Mon Sep 17 00:00:00 2001 From: hartmannathan <59230071+hartmannathan@users.noreply.github.com> Date: Thu, 8 Sep 2022 10:10:15 -0400 Subject: [PATCH] examples/core/core_custom_logging.c: Fix typo (#2692) --- examples/core/core_custom_logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 // Required for: fopen(), fclose(), fputc(), fwrite(), printf(), fprintf(), funopen() #include // 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 };