diff options
author | Thomas Heller <theller@ctypes.org> | 2004-06-18 17:31:23 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-06-18 17:31:23 (GMT) |
commit | dd6d207cf80c6866cb8036a56ea19759370a468b (patch) | |
tree | b1ca65af0b48e91970a600e3b813ca773a1fa3b7 /Doc/dist | |
parent | 48340390ac23a66cc2251a12d8690207726b85be (diff) | |
download | cpython-dd6d207cf80c6866cb8036a56ea19759370a468b.zip cpython-dd6d207cf80c6866cb8036a56ea19759370a468b.tar.gz cpython-dd6d207cf80c6866cb8036a56ea19759370a468b.tar.bz2 |
Fix an obvious typo (It *is* a typo, or not?)
Diffstat (limited to 'Doc/dist')
-rw-r--r-- | Doc/dist/dist.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index daf1a5c..096702b 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -693,7 +693,7 @@ The corresponding call to \function{setup()} might be: setup(..., packages=['mypkg'], package_dir={'mypkg': 'src/mypkg'}, - package_data={'pypkg': ['data/*.dat']}, + package_data={'mypkg': ['data/*.dat']}, ) \end{verbatim} |