fix: spell
This commit is contained in:
@@ -32,13 +32,13 @@ impl Command for CommandImpl {
|
||||
fn find_create(crate_io_client: &SyncClient, crate_name: &str) -> Option<CrateResponse> {
|
||||
let c = match crate_io_client.get_crate(crate_name) {
|
||||
Ok(c) => c, Err(e) => {
|
||||
failure!("Create not found or network error: {}", e);
|
||||
failure!("Crate not found or network error: {}", e);
|
||||
return None;
|
||||
},
|
||||
};
|
||||
let crate_data = &c.crate_data;
|
||||
if crate_data.id != crate_name {
|
||||
failure!("Create not found: {}", crate_name);
|
||||
failure!("Crate not found: {}", crate_name);
|
||||
return None;
|
||||
}
|
||||
if crate_data.downloads < 1000 {
|
||||
|
||||
Reference in New Issue
Block a user