From b6e26030dd8c05a41190a00d3e8bb0f1b70e2cb2 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 09:53:33 -0800 Subject: [PATCH] Update Strings --- Strings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Strings.md b/Strings.md index 2e1cdd8..d48f69b 100644 --- a/Strings.md +++ b/Strings.md @@ -21,10 +21,10 @@ The examples below will only be using UTF-8 strings to demonstrate it's function ehs::Str_8 str = "Hello World!"; str.ToLower(); ``` -**Result:** str = "hello world!" +**Result:** str == "hello world!" ### ToUpper ```cpp ehs::Str_8 str = "Hello World!"; str.ToUpper(); ``` -**Result:** str = "HELLO WORLD!" \ No newline at end of file +**Result:** str == "HELLO WORLD!" \ No newline at end of file