fixed function name
This commit is contained in:
parent
7de2577725
commit
48de71d926
1 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ use module_path::ModuleEntryPath;
|
|||
use error::{TodoError, TodoErrorKind};
|
||||
|
||||
/// With the uuid we get the storeid and then we can delete the entry
|
||||
pub fn deleteFunc(uuid: Uuid, store : &Store) -> Result<(),TodoError> {
|
||||
pub fn delete(uuid: Uuid, store : &Store) -> Result<(),TodoError> {
|
||||
// With the uuid we get the storeid
|
||||
let store_id = ModuleEntryPath::new(format!("taskwarrior/{}", uuid)).into_storeid();
|
||||
// It deletes an entry
|
||||
|
|
Loading…
Reference in a new issue