diff --git a/src/app/cmdoptions.cpp b/src/app/cmdoptions.cpp index 21546f8e6..99b6aea52 100644 --- a/src/app/cmdoptions.cpp +++ b/src/app/cmdoptions.cpp @@ -1,11 +1,11 @@ /// /// @file cmdoptions.cpp /// @brief Command-line option handling for the primesieve -/// command-line application. The command-line options are -/// first parsed in cmdoptions.cpp and stored in a CmdOptions -/// object. Afterwards we execute the function corresponding -/// to the user's command-line options in the main() function -/// in main.cpp. +/// command-line application. The user's command-line options +/// are first parsed in cmdoptions.cpp and stored in a +/// CmdOptions object. Afterwards we execute the function +/// corresponding to the user's command-line options in the +/// main() function in main.cpp. /// /// How to add a new command-line option: /// diff --git a/src/app/main.cpp b/src/app/main.cpp index 4a049c683..016007a98 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -1,11 +1,11 @@ /// /// @file main.cpp /// @brief Command-line option handling for the primesieve -/// command-line application. The command-line options are -/// first parsed in cmdoptions.cpp and stored in a CmdOptions -/// object. Afterwards we execute the function corresponding -/// to the user's command-line options in the main() function -/// in main.cpp. +/// command-line application. The user's command-line options +/// are first parsed in cmdoptions.cpp and stored in a +/// CmdOptions object. Afterwards we execute the function +/// corresponding to the user's command-line options in the +/// main() function in main.cpp. /// /// How to add a new command-line option: ///