typo moment

This commit is contained in:
ouwou
2020-10-04 15:54:41 -04:00
parent 69c4b0c948
commit 68f4578cb4

View File

@@ -50,7 +50,7 @@ inline void LaunchBrowser(std::string url) {
#elif defined(__APPLE__)
std::system(("open " + url).c_str());
#elif defined(__linux__)
std::system(("xdg-open" + url).c_str());
std::system(("xdg-open " + url).c_str());
#else
printf("can't open url on this platform\n");
#endif