diff options
author | Gurupad Hegde <gurupad93@gmail.com> | 2019-12-28 22:16:02 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-12-28 22:16:02 (GMT) |
commit | 6c7bb38ff2799ac218e6df598b2b262f89e2bc1e (patch) | |
tree | 1c7a05153ff747a88c4462a71abc7905fc0ad597 /Doc/faq/programming.rst | |
parent | 98f0f04b5016e63561d313a3446b7b58f2c12611 (diff) | |
download | cpython-6c7bb38ff2799ac218e6df598b2b262f89e2bc1e.zip cpython-6c7bb38ff2799ac218e6df598b2b262f89e2bc1e.tar.gz cpython-6c7bb38ff2799ac218e6df598b2b262f89e2bc1e.tar.bz2 |
bpo-39136: Fixed typos (GH-17720)
funtion -> function; configuraton -> configuration; defintitions -> definitions;
focusses -> focuses; necesarily -> necessarily; follwing -> following;
Excape -> Escape,
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 9d45765..70b11d6 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1019,7 +1019,7 @@ That's a tough one, in general. First, here are a list of things to remember before diving further: * Performance characteristics vary across Python implementations. This FAQ - focusses on :term:`CPython`. + focuses on :term:`CPython`. * Behaviour can vary across operating systems, especially when talking about I/O or multi-threading. * You should always find the hot spots in your program *before* attempting to |