Update git-line-endings-on-windows.md
diff --git a/git-line-endings-on-windows.md b/git-line-endings-on-windows.md
index 6d33bcc..62ee30b 100644
--- a/git-line-endings-on-windows.md
+++ b/git-line-endings-on-windows.md
@@ -14,7 +14,7 @@
 Fix manually:
 
 - Find files (and lines) that still have CRLF:
-  - `grep -Pnr --include=* --exclude-dir={\.git,node_modules} '\r$' .' .` ([via](https://stackoverflow.com/a/33281752/252627))
+  - `grep -Pnr --include=* --exclude-dir={\.git,node_modules} '\r$' .` ([via](https://stackoverflow.com/a/33281752/252627))
   - `find . -not -type d -exec file "{}" ";" | grep CRLF` ([via](https://stackoverflow.com/a/73969/252627))
 - Convert: `dos2unix`