Fixed a typo in docstring.

This commit is contained in:
Kirill Simonov 2009-08-29 21:33:36 +00:00
parent fa14e18b38
commit 51fd5cbfdb
2 changed files with 2 additions and 2 deletions

View File

@ -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():

View File

@ -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():