diff --git a/Strings.md b/Strings.md index 4e4f319..ce94cad 100644 --- a/Strings.md +++ b/Strings.md @@ -48,7 +48,7 @@ ehs::Str_8 b = a.GetUpper(); **Result:** b == "HELLO WORLD!" ### Split -This method will split a single string into multiple strings with the given delimiter and return a Vector container object. The first parameter is the given delimiter to split the string with. The second parameter is the maximum number of times to split the string; this can be set to zero for unlimited. +This method will split a single string into multiple strings with the given delimiter and return a Vector container object. The first parameter is the given delimiter to split the string with. The second parameter is the maximum number of times to split the string; this can be set to zero or unassigned a value for unlimited. ```cpp ehs::Str_8 a = "Hello! How are you?"; ehs::Vector b = a.Split(" ", 1);