Skip to content

Commit a114eaa

Browse files
author
Luc Paul Labonté
committed
Fix typo
1 parent ac8f549 commit a114eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ std::pair<std::string, std::string> split(const std::string &str) {
6161
if (std::count(str.begin(), str.end(), ':') != 1)
6262
throw std::runtime_error("Invalid interfaces bind, format is 'interface1:interface2': " + str);
6363
const auto pos = str.find(':');
64-
if (pos == std::string::npos) throw std::runtime_error("Require ':' to seperate interfaces");
64+
if (pos == std::string::npos) throw std::runtime_error("Require ':' to separate interfaces");
6565

6666
return {str.substr(0, pos), str.substr(pos + 1)};
6767
}

0 commit comments

Comments
 (0)