Skip to content

Commit e70f305

Browse files
authored
Update README.md
1 parent dd72baf commit e70f305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ stringtoolbox is available as single-file, header-only library - just drop [stri
2121
* Remove trailing whitespace characters: `std::string retVal = stringtoolbox::rtrim("Hello World! ");`
2222
* Remove leading and trailing whitespace characters: `std::string retVal = stringtoolbox::trim(" Hello World! ");`
2323
* Replace all occurrences of given character: `std::string retVal = stringtoolbox::replaceAll("Hello World.", '.', '!');`
24-
* Split a string using the given delimiter: `std::vector<std::string> retVal = split("Hello,World", ',');`
24+
* Split a string using the given delimiter: `std::vector<std::string> retVal = stringtoolbox::split("Hello,World", ',');`
2525

2626

2727
## Dependencies

0 commit comments

Comments
 (0)