Browse Source

darkwikid/taud: fix typo

ghassmo 3 years ago
parent
commit
b793085d12
2 changed files with 2 additions and 2 deletions
  1. 1 1
      bin/darkwikid/src/main.rs
  2. 1 1
      bin/tau/taud/src/main.rs

+ 1 - 1
bin/darkwikid/src/main.rs

@@ -563,7 +563,7 @@ async fn realmain(settings: Args, executor: Arc<Executor<'_>>) -> Result<()> {
 
 
         if confirm == "yes" || confirm == "y" {
         if confirm == "yes" || confirm == "y" {
             remove_dir_all(docs_path).unwrap_or(());
             remove_dir_all(docs_path).unwrap_or(());
-            println!("Local docs get removed");
+            println!("Local data removed successfully.");
         } else {
         } else {
             error!("Unexpected Value: {}", confirm);
             error!("Unexpected Value: {}", confirm);
         }
         }

+ 1 - 1
bin/tau/taud/src/main.rs

@@ -156,7 +156,7 @@ async fn realmain(settings: Args, executor: Arc<Executor<'_>>) -> Result<()> {
 
 
         if confirm == "yes" || confirm == "y" {
         if confirm == "yes" || confirm == "y" {
             remove_dir_all(datastore_path).unwrap_or(());
             remove_dir_all(datastore_path).unwrap_or(());
-            println!("Local data get removed");
+            println!("Local data removed successfully.");
         } else {
         } else {
             error!("Unexpected Value: {}", confirm);
             error!("Unexpected Value: {}", confirm);
         }
         }