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 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/yaml/__init__.py') 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(): -- cgit v1.2.1