From 0959f6ebf69f44d5bb0225cc94fd187ebedf8be5 Mon Sep 17 00:00:00 2001 From: RadsammyT <32146976+RadsammyT@users.noreply.github.com> Date: Wed, 9 Aug 2023 18:21:14 -0400 Subject: fix typos in rmodels, rshapes, rtext modules (#3236) --- src/rtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rtext.c') diff --git a/src/rtext.c b/src/rtext.c index d6aa6d73..f5234ecf 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -1697,7 +1697,7 @@ const char *TextToPascal(const char *text) // WARNING: Allocated memory must be manually freed char *LoadUTF8(const int *codepoints, int length) { - // We allocate enough memory fo fit all possible codepoints + // We allocate enough memory to fit all possible codepoints // NOTE: 5 bytes for every codepoint should be enough char *text = (char *)RL_CALLOC(length*5, 1); const char *utf8 = NULL; -- cgit v1.2.3