summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorMatt Harding <majaharding@gmail.com>2022-05-02 15:01:03 (GMT)
committerGitHub <noreply@github.com>2022-05-02 15:01:03 (GMT)
commit2a7efa324274a54fe0e5480cae1438d8294b9ec3 (patch)
tree56cb7b613a14d4b4aed4353e815cc6f3ee3f5d95 /Doc/faq
parentb25352a5c039d95e019dd8ca111f6f77c43ca1f7 (diff)
downloadcpython-2a7efa324274a54fe0e5480cae1438d8294b9ec3.zip
cpython-2a7efa324274a54fe0e5480cae1438d8294b9ec3.tar.gz
cpython-2a7efa324274a54fe0e5480cae1438d8294b9ec3.tar.bz2
Fix typo in Programming FAQ (#92083)
I believe the word "with" was missing here.
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index da011cc..f87eaff 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.