]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] Fix typo in Programming FAQ (GH-92083) (GH-92148)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 2 May 2022 17:24:49 +0000 (10:24 -0700)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 17:24:49 +0000 (10:24 -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 a1adf851bdded71faba43b2ea098fbfc080e806a..a1701bd4184bb4c3093fc58e95f86bebf902c3c7 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.