]> granicus.if.org Git - python/commitdiff
Closes #14305: fix typo.
authorGeorg Brandl <georg@python.org>
Wed, 14 Mar 2012 21:40:08 +0000 (22:40 +0100)
committerGeorg Brandl <georg@python.org>
Wed, 14 Mar 2012 21:40:08 +0000 (22:40 +0100)
Doc/faq/programming.rst

index 5de36764c5eb10c142d0a7259635fb9c0fbd1bfc..d33e25be85f50fc8f8e2166780b8a995b907b914 100644 (file)
@@ -794,9 +794,9 @@ My program is too slow. How do I speed it up?
 That's a tough one, in general.  First, here are a list of things to
 remember before diving further:
 
-* Performance characteristics vary accross Python implementations.  This FAQ
+* Performance characteristics vary across Python implementations.  This FAQ
   focusses on :term:`CPython`.
-* Behaviour can vary accross operating systems, especially when talking about
+* 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
   optimize any code (see the :mod:`profile` module).