From 2c0a5deab602a982411b5579907b46e4f9d96bc2 Mon Sep 17 00:00:00 2001 From: eutro Date: Thu, 16 Dec 2021 13:09:37 +0000 Subject: [PATCH] Update EscapeBackslashes description --- parser/raylib_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 7dffa05dc..6b94c7d3e 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -764,7 +764,7 @@ static bool IsTextEqual(const char *text1, const char *text2, unsigned int count return result; } -// Escape backslashes in a string into a static buffer +// Escape backslashes in a string, writing the escaped string into a static buffer static char* EscapeBackslashes(char *text) { static char buf[256];