From a45c9955e7db0af6b53b96adaaf8c0e21d012495 Mon Sep 17 00:00:00 2001 From: Azibom Date: Fri, 28 Nov 2025 11:40:14 +0330 Subject: [PATCH] Fix g_strcompress docs (mod 256) --- glib/gstrfuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gstrfuncs.c b/glib/gstrfuncs.c index 22ec7a1ee..4f57e4f9f 100644 --- a/glib/gstrfuncs.c +++ b/glib/gstrfuncs.c @@ -2108,7 +2108,7 @@ g_strcanon (gchar *string, * - `\r` → [U+000D Carriage Return](https://en.wikipedia.org/wiki/Carriage_return) * - `\t` → [U+0009 Horizontal Tabulation](https://en.wikipedia.org/wiki/Tab_character) * - `\v` → [U+000B Vertical Tabulation](https://en.wikipedia.org/wiki/Vertical_Tab) - * - `\` followed by one to three octal digits → the numeric value (mod 255) + * - `\` followed by one to three octal digits → the numeric value (mod 256) * - `\` followed by any other character → the character as is. * For example, `\\` will turn into a backslash (`\`) and `\"` into a double quote (`"`). *