From a184ff9ddedf9176134bc9230d146b7055a7a738 Mon Sep 17 00:00:00 2001 From: CrashOverride Date: Fri, 4 Oct 2019 19:30:34 +0200 Subject: [PATCH] Update subprocess.hpp fixed typo in comment --- subprocess.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprocess.hpp b/subprocess.hpp index c3338f9..f25db0e 100755 --- a/subprocess.hpp +++ b/subprocess.hpp @@ -287,7 +287,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 : Vector of strings split at deleimiter. + * [out] vector : Vector of strings split at delimiter. */ static inline std::vector split(const std::string& str, const std::string& delims=" \t")