From 84fc7e0993cd08082184abc8f553267b47c6a11e Mon Sep 17 00:00:00 2001 From: xi Date: Sat, 29 Aug 2009 21:33:36 +0000 Subject: Fixed a typo in docstring. git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@353 18f92427-320e-0410-9341-c67f048884a3 --- lib/yaml/__init__.py | 2 +- lib3/yaml/__init__.py | 2 +- 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(): -- cgit v1.2.1