Browse Source

find: slightly reword the -not -path example

Waldir Pimenta 8 years ago
parent
commit
cd38a006d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pages/common/find.md

+ 1 - 1
pages/common/find.md

@@ -30,6 +30,6 @@
 
 `find {{root_path}} -name '{{*.py}}' -or -name '{{*.r}}'`
 
-- Find files matching path pattern while excluding some certain path:
+- Find files matching a given pattern, while excluding specific paths:
 
 `find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'`