fix typos in rmodels, rshapes, rtext modules (#3236)

This commit is contained in:
RadsammyT
2023-08-09 18:21:14 -04:00
committed by GitHub
parent 90f1749965
commit 0959f6ebf6
3 changed files with 6 additions and 6 deletions

View File

@@ -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;