Merge a184ff9ddedf9176134bc9230d146b7055a7a738 into 2ef9f168d34d5f0573dd486629e8cf0218b189a9

This commit is contained in:
CrashOverride 2022-06-01 06:18:23 +09:00 committed by GitHub
commit 489e2c33f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,7 @@ namespace util
* delimiters provided.
* [in] deleims : Delimiter characters based upon which the string needs
* to be split. Default constructed to ' '(space) and '\t'(tab)
* [out] vector<string> : Vector of strings split at deleimiter.
* [out] vector<string> : Vector of strings split at delimiter.
*/
static inline std::vector<std::string>
split(const std::string& str, const std::string& delims=" \t")