diff --git a/Examples.md b/Examples.md index 7f44e4e..8e7293e 100644 --- a/Examples.md +++ b/Examples.md @@ -97,7 +97,7 @@ fd() { ```sh # Another fd - cd into the selected directory # This one differs from the above, by only showing the sub directories and not - showing the directories within those. +# showing the directories within those. fd() { DIR=`find * -maxdepth 0 -type d -print 2> /dev/null | fzf-tmux` \ && cd "$DIR"