From 0dd8ed021fa64b51e3d15a7add011b43c962e7dc Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Thu, 12 Jun 2025 14:26:35 +1000 Subject: [PATCH] c: Fix typo "resouce" in comment --- src/c/nehe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/nehe.c b/src/c/nehe.c index b2cdbae..b4eb9ac 100644 --- a/src/c/nehe.c +++ b/src/c/nehe.c @@ -104,7 +104,7 @@ char* NeHe_ResourcePath(const NeHeContext* restrict ctx, const char* const restr { SDL_assert(ctx && ctx->baseDir && resourcePath); - // Build path to resouce: "{baseDir}/{resourcePath}" + // Build path to resource: "{baseDir}/{resourcePath}" const size_t baseLen = SDL_strlen(ctx->baseDir); const size_t resourcePathLen = SDL_strlen(resourcePath); char* path = SDL_malloc(baseLen + resourcePathLen + 1);