From d08fe525db939cf6fd273020c9828119e4917a83 Mon Sep 17 00:00:00 2001 From: Michael Huynh Date: Sat, 16 May 2015 00:21:38 -0400 Subject: [PATCH] Minor: Changed iter_tree/iter_spec to match_tree/match_spec --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 8437b42..1171f37 100644 --- a/README.rst +++ b/README.rst @@ -80,11 +80,11 @@ as well:: You can perform matching on a whole directory tree with:: - >>> matches = spec.iter_tree('path/to/directory') + >>> matches = spec.match_tree('path/to/directory') Or you can perform matching on a specific set of file paths with:: - >>> matches = spec.iter_files(file_paths) + >>> matches = spec.match_files(file_paths)