Skip to content

Commit

Permalink
Fix commandline arguments typo (#1084)
Browse files Browse the repository at this point in the history
The --timeout argument has a typo, responde -> respond.
  • Loading branch information
kleutzinger authored Oct 16, 2023
1 parent ecb3679 commit bf2a8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ void App::processCommandlineOptions(QCommandLineParser& parser, QStringList argu
QCoreApplication::translate("main", "nvim_path"),
"nvim"));
parser.addOption(QCommandLineOption("timeout",
QCoreApplication::translate("main", "Error if nvim does not responde after count milliseconds"),
QCoreApplication::translate("main", "Error if nvim does not respond after count milliseconds"),
QCoreApplication::translate("main", "ms"),
"20000"));

Expand Down

0 comments on commit bf2a8eb

Please sign in to comment.