From da0ab54e1c4bdacd3008c1c33d19bd17309edad8 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 4 Apr 2020 08:56:34 +1100 Subject: [PATCH] docs: Fix simple typo, wihout -> without There is a small typo in src/qcommandline/qcommandline.h. Closes #15426 --- src/qcommandline/qcommandline.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qcommandline/qcommandline.h b/src/qcommandline/qcommandline.h index 734e6c6d7..7c6c0489b 100644 --- a/src/qcommandline/qcommandline.h +++ b/src/qcommandline/qcommandline.h @@ -70,7 +70,7 @@ public: */ typedef enum { None = 0, /**< can be used for the last line of a QCommandLineConfigEntry[] . */ - Switch, /**< a simple switch wihout argument (eg: ls -l) */ + Switch, /**< a simple switch without argument (eg: ls -l) */ Option, /**< an option with an argument (eg: tar -f test.tar) */ Param /**< a parameter without '-' delimiter (eg: cp foo bar) */ } Type;