Update Strings

2025-11-20 09:50:07 -08:00
parent 9976b30a65
commit a23206785a

@@ -16,5 +16,9 @@ The examples below will only be using UTF-8 strings to demonstrate it's function
# Examples # Examples
## Lower/Upper ## Lower/Upper
### ToLower
```cpp
ehs::Str_8 str = "Hello World!";
str.ToLower();
```