]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Programming FAQ (GH-92083)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 2 May 2022 15:20:09 +0000 (08:20 -0700)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 15:20:09 +0000 (08:20 -0700)
I believe the word "with" was missing here.
(cherry picked from commit 2a7efa324274a54fe0e5480cae1438d8294b9ec3)

Co-authored-by: Matt Harding <majaharding@gmail.com>
Doc/faq/programming.rst

index 3cf041e1a4230e7c8dba2059ef49daa22e9cdc47..c2656382aad7853ac9a1685e9decabd8671c49ad 100644 (file)
@@ -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.