diff options
| author | RadsammyT <[email protected]> | 2023-08-09 18:21:14 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-10 00:21:14 +0200 |
| commit | 0959f6ebf69f44d5bb0225cc94fd187ebedf8be5 (patch) | |
| tree | e5614193c99f3047772fe7e99ca9aa63a4c21953 /src/rtext.c | |
| parent | 90f17499658275ace1e4d1bed1aa231e34ac38b6 (diff) | |
| download | raylib-0959f6ebf69f44d5bb0225cc94fd187ebedf8be5.tar.gz raylib-0959f6ebf69f44d5bb0225cc94fd187ebedf8be5.zip | |
fix typos in rmodels, rshapes, rtext modules (#3236)
Diffstat (limited to 'src/rtext.c')
| -rw-r--r-- | src/rtext.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
