gabrielgio.me @ 4f3b7a9fbb951257a039a84cafcd9f897a6bc197

fix: Types and datetime
diff --git a/content/posts/2022-06-23-fish_command.md b/content/posts/2022-06-23-fish_command.md
index 3533b86a62289e6f37be4bb18062a7869538a49c..697ba0764d12025098b28a248a76f8a28109ddac 100644
--- a/content/posts/2022-06-23-fish_command.md
+++ b/content/posts/2022-06-23-fish_command.md
@@ -1,6 +1,6 @@
 ---
 title:  "Shortcutting with fish shell"
-date:   2022-02-23
+date:   2022-06-23
 tags: ['fish', 'linux', 'shell']
 ---
 
@@ -9,10 +9,11 @@ has been a great experience. It has sane defaults and with almost no work I
 have a perfectly function shell with a great auto completion engine. I have
 also tried zsh before and although it is great shell it require some work to
 come to same level of fish, even after you include oh-my-zsh[^2] (which I'd
-highly recommend to use if you are starting to use zsh). One thing to keep in
+highly recommend to use if you are starting with zsh). One thing to keep in
 mind is that  fish is far from sh or bash compatible, so if you have something
-built in sh or bash it won't work with fish. Anyhow, what I want to show here
-is how much you can optimize your workflow with just a couple lines of shell.
+built in sh or bash it won't work with fish (as you can't source it). Anyhow,
+what I want to show here is how much you can optimize your workflow with just a
+couple lines of shell.
 
 ## The use case
 
@@ -112,7 +113,7 @@ you will jump right into the folder. Due to the fuzzy finder algorithm you
 won't need to type more then a couple of char making the whole process really
 fast.
 
-This is just a jump start to using script to make your life easier. Shell
+This is just a jump start using script to make your life easier. Shell
 scripting is a powerful tool for a programmer and it will definitely pay
 dividends if you spend time to master it.