chore: typos

This commit is contained in:
dxps 2023-01-06 17:13:08 +02:00
parent 91fa5fa172
commit bb9b95fbd1
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ pub struct Create {
impl Create {
pub fn create(self) -> Result<()> {
if Self::name_vaild_check(self.name.clone()) {
if Self::name_valid_check(self.name.clone()) {
return custom_error!("❗Unsupported project name.");
}
@ -77,7 +77,7 @@ impl Create {
Ok(())
}
fn name_vaild_check(name: String) -> bool {
fn name_valid_check(name: String) -> bool {
let r = Regex::new(r"^[a-zA-Z][a-zA-Z0-9\-_]$").unwrap();
r.is_match(&name)
}

View file

@ -78,7 +78,7 @@ impl Commands {
match self {
Commands::Build(_) => "build",
Commands::Translate(_) => "translate",
Commands::Serve(_) => "sevre",
Commands::Serve(_) => "serve",
Commands::Create(_) => "create",
Commands::Clean(_) => "clean",
Commands::Config(_) => "config",