diff --git a/pep-0428.txt b/pep-0428.txt index 4a3c7e640..0d5f19b2b 100644 --- a/pep-0428.txt +++ b/pep-0428.txt @@ -594,12 +594,12 @@ Higher-level methods help examine the kind of the file:: False The file owner and group names (rather than numeric ids) are queried -through matching properties:: +through corresponding methods:: >>> p = Path('/etc/shadow') - >>> p.owner + >>> p.owner() 'root' - >>> p.group + >>> p.group() 'shadow'