Commit 08a1472e authored by Ezio Melotti's avatar Ezio Melotti

Merge typo fixes from 3.3.

parents 8281e7c2 2af76da7
...@@ -24,9 +24,9 @@ The email package consists of three major components: ...@@ -24,9 +24,9 @@ The email package consists of three major components:
Conceptually the package is organized around the model. The model provides both Conceptually the package is organized around the model. The model provides both
"external" APIs intended for use by application programs using the library, "external" APIs intended for use by application programs using the library,
and "internal" APIs intended for use by the Parser and Generator components. and "internal" APIs intended for use by the Parser and Generator components.
This division is intentionally a bit fuzy; the API described by this documentation This division is intentionally a bit fuzzy; the API described by this
is all a public, stable API. This allows for an application with special needs documentation is all a public, stable API. This allows for an application
to implement its own parser and/or generator. with special needs to implement its own parser and/or generator.
In addition to the three major functional components, there is a third key In addition to the three major functional components, there is a third key
component to the architecture: component to the architecture:
......
...@@ -349,7 +349,7 @@ class Generator: ...@@ -349,7 +349,7 @@ class Generator:
# This used to be a module level function; we use a classmethod for this # This used to be a module level function; we use a classmethod for this
# and _compile_re so we can continue to provide the module level function # and _compile_re so we can continue to provide the module level function
# for backward compatibility by doing # for backward compatibility by doing
# _make_boudary = Generator._make_boundary # _make_boundary = Generator._make_boundary
# at the end of the module. It *is* internal, so we could drop that... # at the end of the module. It *is* internal, so we could drop that...
@classmethod @classmethod
def _make_boundary(cls, text=None): def _make_boundary(cls, text=None):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment