From d7c67aa19a6d5538e8013a5b98076825aac317ef Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 09:55:58 -0800 Subject: [PATCH] Update Strings --- Strings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Strings.md b/Strings.md index 93a3770..cadde47 100644 --- a/Strings.md +++ b/Strings.md @@ -17,14 +17,14 @@ The examples below will only be using UTF-8 strings to demonstrate it's function # Examples ## Lower/Upper ### ToLower -This method will turn all English alphabetic characters into their lower case equivalent. +This method will turn all English alphabetic characters into their lower case equivalent on the current object. ```cpp ehs::Str_8 str = "Hello World!"; str.ToLower(); ``` **Result:** str == "hello world!" ### ToUpper -This method will turn all English alphabetic characters into their upper case equivalent. +This method will turn all English alphabetic characters into their upper case equivalent on the current object. ```cpp ehs::Str_8 str = "Hello World!"; str.ToUpper();