Skip to content

Commit

Permalink
Doc fix for View.filter -> View.globfilter.
Browse files Browse the repository at this point in the history
This last minute change to the library wasn't followed up with a fix to
the docs.
  • Loading branch information
dotsdl committed Mar 27, 2016
1 parent 39d457f commit e66b609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/views.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ Or only the Leaves? ::

We can get more granular and filter members using glob patterns on their names::

>>> v.filter('*r*')
>>> v.globfilter('*r*')
<View([<Tree: 'larry/'>, <Leaf: 'curly.txt'>])>

And since all these properties and methods return Views, we can stack
operations::

>>> v.filter('*r*').memberleaves
>>> v.globfilter('*r*').memberleaves
<View([<Leaf: 'curly.txt'>])>


Expand Down

0 comments on commit e66b609

Please sign in to comment.