]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in Programming FAQ (#92083)
authorMatt Harding <majaharding@gmail.com>
Mon, 2 May 2022 15:01:03 +0000 (16:01 +0100)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 15:01:03 +0000 (09:01 -0600)
I believe the word "with" was missing here.

Doc/faq/programming.rst

index da011ccb29edb52f17ee528f8cf696b265063acc..f87eaff9531fceea847875c6717d4bd3edf12929 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.