Skip to content

Commit

Permalink
docs(cli): small docs adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jun 16, 2024
1 parent 9dc8329 commit eef8d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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 {
Expand Down

0 comments on commit eef8d48

Please sign in to comment.