diff -r cb0d1d86215e Doc/howto/clinic.rst --- a/Doc/howto/clinic.rst Mon May 18 00:49:15 2015 -0500 +++ b/Doc/howto/clinic.rst Tue May 19 00:25:50 2015 +0300 @@ -1495,7 +1495,7 @@ the ``buffer`` preset. Suppresses the ``impl_prototype``, write the ``docstring_definition`` - and ``parser_defintion`` to ``buffer``, write everything else to ``block``. + and ``parser_definition`` to ``buffer``, write everything else to ``block``. The third new directive is ``destination``:: diff -r cb0d1d86215e Doc/howto/logging-cookbook.rst --- a/Doc/howto/logging-cookbook.rst Mon May 18 00:49:15 2015 -0500 +++ b/Doc/howto/logging-cookbook.rst Tue May 19 00:25:50 2015 +0300 @@ -1417,7 +1417,7 @@ def worker_process(config): """ A number of these are spawned for the purpose of illustration. In - practice, they could be a heterogenous bunch of processes rather than + practice, they could be a heterogeneous bunch of processes rather than ones which are identical to each other. This initialises logging according to the specified configuration, diff -r cb0d1d86215e Doc/library/collections.rst --- a/Doc/library/collections.rst Mon May 18 00:49:15 2015 -0500 +++ b/Doc/library/collections.rst Tue May 19 00:25:50 2015 +0300 @@ -333,7 +333,7 @@ >>> c | d # union: max(c[x], d[x]) Counter({'a': 3, 'b': 2}) -Unary addition and substraction are shortcuts for adding an empty counter +Unary addition and subtraction are shortcuts for adding an empty counter or subtracting from an empty counter. >>> c = Counter(a=2, b=-4) diff -r cb0d1d86215e Doc/library/poplib.rst --- a/Doc/library/poplib.rst Mon May 18 00:49:15 2015 -0500 +++ b/Doc/library/poplib.rst Tue May 19 00:25:50 2015 +0300 @@ -197,7 +197,7 @@ .. method:: POP3.utf8() - Try to switch to UTF-8 mode. Returns the server response if sucessful, + Try to switch to UTF-8 mode. Returns the server response if successful, raises :class:`error_proto` if not. Specified in :RFC:`6856`. .. versionadded:: 3.5 diff -r cb0d1d86215e Doc/library/ssl.rst --- a/Doc/library/ssl.rst Mon May 18 00:49:15 2015 -0500 +++ b/Doc/library/ssl.rst Tue May 19 00:25:50 2015 +0300 @@ -1381,7 +1381,7 @@ .. attribute:: SSLContext.check_hostname - Wether to match the peer cert's hostname with :func:`match_hostname` in + Whether to match the peer cert's hostname with :func:`match_hostname` in :meth:`SSLSocket.do_handshake`. The context's :attr:`~SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, and you must pass *server_hostname* to