[Python-checkins] [3.10] Fix typo in Programming FAQ (GH-92083) (GH-92148)

miss-islington webhook-mailer at python.org
Mon May 2 13:24:59 EDT 2022


https://github.com/python/cpython/commit/864058ba86d93eee9b6ed10b93bd8839a6131e44
commit: 864058ba86d93eee9b6ed10b93bd8839a6131e44
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-02T10:24:49-07:00
summary:

[3.10] Fix typo in Programming FAQ (GH-92083) (GH-92148)



I believe the word "with" was missing here.
(cherry picked from commit 2a7efa324274a54fe0e5480cae1438d8294b9ec3)


Co-authored-by: Matt Harding <majaharding at gmail.com>

files:
M Doc/faq/programming.rst

diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index a1adf851bdded..a1701bd4184bb 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -78,7 +78,7 @@ set of modules required by a program and bind these modules together with a
 Python binary to produce a single executable.
 
 One is to use the freeze tool, which is included in the Python source tree as
-``Tools/freeze``. It converts Python byte code to C arrays; a C compiler you can
+``Tools/freeze``. It converts Python byte code to C arrays; with a C compiler you can
 embed all your modules into a new program, which is then linked with the
 standard Python modules.
 



More information about the Python-checkins mailing list