Update subprocess.hpp

fixed typo in comment
This commit is contained in:
CrashOverride 2019-10-04 19:30:34 +02:00 committed by GitHub
parent a5cc965f72
commit a184ff9dde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,7 +287,7 @@ namespace util
* delimiters provided. * delimiters provided.
* [in] deleims : Delimiter characters based upon which the string needs * [in] deleims : Delimiter characters based upon which the string needs
* to be split. Default constructed to ' '(space) and '\t'(tab) * 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> static inline std::vector<std::string>
split(const std::string& str, const std::string& delims=" \t") split(const std::string& str, const std::string& delims=" \t")