summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-05-02 17:24:49 (GMT)
committerGitHub <noreply@github.com>2022-05-02 17:24:49 (GMT)
commit864058ba86d93eee9b6ed10b93bd8839a6131e44 (patch)
treeb409092fe40de7ecb31ad09d3d074ee86a7b28ec /Doc
parent0e9927b6b008ff7537600cec4f91169a006d0c9d (diff)
downloadcpython-864058ba86d93eee9b6ed10b93bd8839a6131e44.zip
cpython-864058ba86d93eee9b6ed10b93bd8839a6131e44.tar.gz
cpython-864058ba86d93eee9b6ed10b93bd8839a6131e44.tar.bz2
[3.10] Fix typo in Programming FAQ (GH-92083) (GH-92148)
I believe the word "with" was missing here. (cherry picked from commit 2a7efa324274a54fe0e5480cae1438d8294b9ec3) Co-authored-by: Matt Harding <majaharding@gmail.com>
Diffstat (limited to 'Doc')
-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 a1adf85..a1701bd 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.