Merge pull request #88 from dxps/typos

This commit is contained in:
Jon Kelley 2023-01-07 14:28:43 -08:00 committed by GitHub
commit 93c7651312
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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",