summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2009-08-29 21:33:36 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2009-08-29 21:33:36 +0000
commit84fc7e0993cd08082184abc8f553267b47c6a11e (patch)
tree1579004290de4ef8adb15e21771487c47f5edf6a
parent884379d8e880f6a7cfbd76d695d697195a9ba7e7 (diff)
downloadpyyaml-84fc7e0993cd08082184abc8f553267b47c6a11e.tar.gz
Fixed a typo in docstring.
git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@353 18f92427-320e-0410-9341-c67f048884a3
-rw-r--r--lib/yaml/__init__.py2
-rw-r--r--lib3/yaml/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py
index 69c18c4..e9e2aea 100644
--- a/lib/yaml/__init__.py
+++ b/lib/yaml/__init__.py
@@ -43,7 +43,7 @@ def compose(stream, Loader=Loader):
def compose_all(stream, Loader=Loader):
"""
Parse all YAML documents in a stream
- and produce corresponsing representation trees.
+ and produce corresponding representation trees.
"""
loader = Loader(stream)
while loader.check_node():
diff --git a/lib3/yaml/__init__.py b/lib3/yaml/__init__.py
index 5401f9a..cf2b74f 100644
--- a/lib3/yaml/__init__.py
+++ b/lib3/yaml/__init__.py
@@ -44,7 +44,7 @@ def compose(stream, Loader=Loader):
def compose_all(stream, Loader=Loader):
"""
Parse all YAML documents in a stream
- and produce corresponsing representation trees.
+ and produce corresponding representation trees.
"""
loader = Loader(stream)
while loader.check_node():