Skip to content

Commit 92f82b4

Browse files
committed
Update raylib.h
1 parent cdff3d7 commit 92f82b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/raylib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,11 +1539,11 @@ RLAPI const char *TextSubtext(const char *text, int position, int length);
15391539
RLAPI const char *TextRemoveSpaces(const char *text); // Remove text spaces, concat words
15401540
RLAPI char *GetTextBetween(const char *text, const char *begin, const char *end); // Get text between two strings
15411541
RLAPI char *TextReplace(const char *text, const char *search, const char *replacement); // Replace text string with new string
1542-
RLAPI char *TextReplaceAlloc(const char *text, const char *search, const char *replacement); // Replace text string with new string, memory must be MemFree()
1542+
RLAPI char *TextReplaceAlloc(const char *text, const char *search, const char *replacement); // Replace text string with new string, memory must be MemFree()
15431543
RLAPI char *TextReplaceBetween(const char *text, const char *begin, const char *end, const char *replacement); // Replace text between two specific strings
15441544
RLAPI char *TextReplaceBetweenAlloc(const char *text, const char *begin, const char *end, const char *replacement); // Replace text between two specific strings, memory must be MemFree()
15451545
RLAPI char *TextInsert(const char *text, const char *insert, int position); // Insert text in a defined byte position
1546-
RLAPI char *TextInsertAlloc(const char *text, const char *insert, int position); // Insert text in a defined byte position, memory must be MemFree()
1546+
RLAPI char *TextInsertAlloc(const char *text, const char *insert, int position); // Insert text in a defined byte position, memory must be MemFree()
15471547
RLAPI char *TextJoin(char **textList, int count, const char *delimiter); // Join text strings with delimiter
15481548
RLAPI char **TextSplit(const char *text, char delimiter, int *count); // Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings
15491549
RLAPI void TextAppend(char *text, const char *append, int *position); // Append text at specific position and move cursor

0 commit comments

Comments
 (0)