summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-09-27 00:43:59 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-09-27 00:43:59 +0000
commit7b9e36ddd99e5bd562001271bb745a928d336be3 (patch)
treeb641f87fa7bd2b8052bfd87b0aef9b170a19b50c /docs
parentb5e4f9b20a60242bcf11465d99d9699638f3e631 (diff)
downloadpyfilesystem-7b9e36ddd99e5bd562001271bb745a928d336be3.tar.gz
fix some doc typos
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@439 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'docs')
-rw-r--r--docs/concepts.rst2
-rw-r--r--docs/interface.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/concepts.rst b/docs/concepts.rst
index 7eee853..1205998 100644
--- a/docs/concepts.rst
+++ b/docs/concepts.rst
@@ -47,7 +47,7 @@ Paths used within an FS object use the same common format, regardless of the und
When working with paths in FS objects, keep in mind the following:
- * Path components are separated by a forward path (/)
+ * Path components are separated by a forward slash (/)
* Paths beginning with a forward slash are absolute (start at the root of the FS)
* Paths not beginning with a forward slash are relative
* A single dot means 'current directory'
diff --git a/docs/interface.rst b/docs/interface.rst
index 59f07d7..ace6920 100644
--- a/docs/interface.rst
+++ b/docs/interface.rst
@@ -21,8 +21,8 @@ The following methods are required for a minimal Filesystem interface:
* :meth:`~fs.base.FS.makedir` Create a new directory
* :meth:`~fs.base.FS.remove` Remove an existing file
* :meth:`~fs.base.FS.removedir` Remove an existing directory
- * :meth:`~fs.base.FS.rename` Automically rename a file or directory
- * :meth:`~fs.base.FS.getinfo` Return information about the path e.h. size, mtime
+ * :meth:`~fs.base.FS.rename` Atomically rename a file or directory
+ * :meth:`~fs.base.FS.getinfo` Return information about the path e.g. size, mtime
Non - Essential Methods