From d0fcc8c767c6c9536524e22116aacbe307e291dd Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Sun, 11 Feb 2024 10:17:48 +0100 Subject: [PATCH] Update doc --- src/app/cmdoptions.cpp | 10 +++++----- src/app/main.cpp | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) 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: ///