diff options
| author | Ray <[email protected]> | 2024-04-20 20:31:06 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-04-20 20:31:06 +0200 |
| commit | e85f245ad43283a46bab866d8612569c3246883b (patch) | |
| tree | eaaa6b394b7b5613d53b790221cd5cf6282955a1 /src/rtext.c | |
| parent | c1943f0f7c253cd839c7633e02d3d7f3aa3a6833 (diff) | |
| download | raylib-e85f245ad43283a46bab866d8612569c3246883b.tar.gz raylib-e85f245ad43283a46bab866d8612569c3246883b.zip | |
REVIEWED: Remove final punctuation in code comments
Diffstat (limited to 'src/rtext.c')
| -rw-r--r-- | src/rtext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtext.c b/src/rtext.c index 2ff6fd92..47f3e062 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -119,7 +119,7 @@ //---------------------------------------------------------------------------------- // Types and Structures Definition //---------------------------------------------------------------------------------- -// ... +//... //---------------------------------------------------------------------------------- // Global variables @@ -1077,7 +1077,7 @@ bool ExportFontAsCode(Font font, const char *fileName) #endif // We have two possible mechanisms to assign font.recs and font.glyphs data, // that data is already available as global arrays, we two options to assign that data: - // - 1. Data copy. This option consumes more memory and Font MUST be unloaded by user, requiring additional code. + // - 1. Data copy. This option consumes more memory and Font MUST be unloaded by user, requiring additional code // - 2. Data assignment. This option consumes less memory and Font MUST NOT be unloaded by user because data is on protected DATA segment //#define SUPPORT_FONT_DATA_COPY #if defined(SUPPORT_FONT_DATA_COPY) |
