summaryrefslogtreecommitdiff
path: root/fs/wrapfs
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-27 12:01:23 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-27 12:01:23 +0000
commitd8638bb08ef2f374546249987e55f6edc3c08bc6 (patch)
tree5cc0bc7bbee5130d8ade0af47981217a9af0e1aa /fs/wrapfs
parent829536a6e612b221c259c290dea14881563b6475 (diff)
downloadpyfilesystem-d8638bb08ef2f374546249987e55f6edc3c08bc6.tar.gz
some doc spelling fixes
Many more to deal with; `make spelling` for the list git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@617 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/wrapfs')
-rw-r--r--fs/wrapfs/hidedotfilesfs.py2
-rw-r--r--fs/wrapfs/lazyfs.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/wrapfs/hidedotfilesfs.py b/fs/wrapfs/hidedotfilesfs.py
index 8c24e72..6fd2b9e 100644
--- a/fs/wrapfs/hidedotfilesfs.py
+++ b/fs/wrapfs/hidedotfilesfs.py
@@ -14,7 +14,7 @@ class HideDotFilesFS(WrapFS):
"""FS wrapper class that hides dot-files in directory listings.
The listdir() function takes an extra keyword argument 'hidden'
- indicating whether hidden dotfiles shoud be included in the output.
+ indicating whether hidden dot-files shoud be included in the output.
It is False by default.
"""
diff --git a/fs/wrapfs/lazyfs.py b/fs/wrapfs/lazyfs.py
index 55a3dd5..50b14ac 100644
--- a/fs/wrapfs/lazyfs.py
+++ b/fs/wrapfs/lazyfs.py
@@ -2,10 +2,10 @@
fs.wrapfs.lazyfs
================
-A class for lazy initialisation of an FS object.
+A class for lazy initialization of an FS object.
This module provides the class LazyFS, an FS wrapper class that can lazily
-initialise its underlying FS object.
+initialize its underlying FS object.
"""