-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace the TODO
by a explanation of the limits
#2308
base: main
Are you sure you want to change the base?
Conversation
internal/mithril-doc/src/lib.rs
Outdated
@@ -1,6 +1,6 @@ | |||
//! Commands to generate a markdown documentation for the command line. | |||
// TODO: Some Configuration could not be generated properly because there is a lack of information. | |||
// LIMITATIONS: Some `Configuration` cannot be generated as precisely as we would like because there is a lack of information in code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// LIMITATIONS: Some `Configuration` cannot be generated as precisely as we would like because there is a lack of information in code. | |
// LIMITATIONS: Some `Configuration` cannot be generated as precisely as we would like because there is a lack of information in the code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
3ae69e0
to
a8e0f9f
Compare
@@ -45,6 +45,7 @@ impl MainCommand { | |||
Self::Serve(cmd) => cmd.execute(root_logger, config_builder).await, | |||
Self::Tools(cmd) => cmd.execute(root_logger, config_builder).await, | |||
Self::GenerateDoc(cmd) => { | |||
println!("Please note: the documentation generated is not able to indicate the environment variables used by the commands."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the correct location for this println ? Should it be in mithril-doc
instead ?
Content
Remove a
TODO
and replace it by a message indicated the limitation of the documentation generated.Pre-submit checklist