From eef8d489f5f0b260636d40d0a1e67fa2c465b25f Mon Sep 17 00:00:00 2001 From: NTBBloodbath Date: Sun, 16 Jun 2024 15:49:05 -0400 Subject: [PATCH] docs(cli): small docs adjustments --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 4a41a7e..1cc08d5 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -45,7 +45,7 @@ enum Commands { /// Asynchronously parse the command-line arguments and executes the corresponding subcommand /// -/// # Returns +/// # Returns: /// A `Result<()>` indicating success or error. On error, the context message will provide information on why the subcommand failed. pub async fn start() -> Result<()> { let cli = Cli::parse(); @@ -64,7 +64,7 @@ pub async fn start() -> Result<()> { /// # Arguments: /// * name: An optional name for the site. If `None` is provided, an error will be returned. /// -/// # Returns +/// # Returns: /// A `Result<()>` indicating success or error. On error, the context message will provide information on why the site could not be initialized. async fn init_site(name: Option<&String>) -> Result<()> { if let Some(name) = name {