We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8f549 commit a114eaaCopy full SHA for a114eaa
main.cpp
@@ -61,7 +61,7 @@ std::pair<std::string, std::string> split(const std::string &str) {
61
if (std::count(str.begin(), str.end(), ':') != 1)
62
throw std::runtime_error("Invalid interfaces bind, format is 'interface1:interface2': " + str);
63
const auto pos = str.find(':');
64
- if (pos == std::string::npos) throw std::runtime_error("Require ':' to seperate interfaces");
+ if (pos == std::string::npos) throw std::runtime_error("Require ':' to separate interfaces");
65
66
return {str.substr(0, pos), str.substr(pos + 1)};
67
}
0 commit comments