fixed function name

This commit is contained in:
mario 2016-06-28 20:20:35 +02:00
parent 7de2577725
commit 48de71d926

View file

@ -7,7 +7,7 @@ use module_path::ModuleEntryPath;
use error::{TodoError, TodoErrorKind}; use error::{TodoError, TodoErrorKind};
/// With the uuid we get the storeid and then we can delete the entry /// 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 // With the uuid we get the storeid
let store_id = ModuleEntryPath::new(format!("taskwarrior/{}", uuid)).into_storeid(); let store_id = ModuleEntryPath::new(format!("taskwarrior/{}", uuid)).into_storeid();
// It deletes an entry // It deletes an entry