Fix typo in Programming FAQ (#92083)

I believe the word "with" was missing here.
This commit is contained in:
Matt Harding 2022-05-02 16:01:03 +01:00 committed by GitHub
parent b25352a5c0
commit 2a7efa3242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.