]> granicus.if.org Git - python/commitdiff
Fix a couple of typos.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 10 Aug 2013 15:47:07 +0000 (18:47 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 10 Aug 2013 15:47:07 +0000 (18:47 +0300)
Lib/email/architecture.rst
Lib/email/generator.py

index 80d24fe5b94c917ed1fa48e33475e9c169f99e17..78572ae63b4d2b643d089a35e718d770bf88ebec 100644 (file)
@@ -24,9 +24,9 @@ The email package consists of three major components:
 Conceptually the package is organized around the model.  The model provides both
 "external" APIs intended for use by application programs using the library,
 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
-is all a public, stable API.  This allows for an application with special needs
-to implement its own parser and/or generator.
+This division is intentionally a bit fuzzy; the API described by this
+documentation is all a public, stable API.  This allows for an application
+with special needs to implement its own parser and/or generator.
 
 In addition to the three major functional components, there is a third key
 component to the architecture:
index 24f2abf2102d443915b6fafaf3f07a915b4024c6..4ea0b559b9971cc5b0e1dd442628cba55814b887 100644 (file)
@@ -349,7 +349,7 @@ class Generator:
     # 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
     # 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...
     @classmethod
     def _make_boundary(cls, text=None):