summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2009-03-04 21:18:17 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2009-03-04 21:18:17 (GMT)
commiteeafb96b0877b78b1efd341f1103b2a81d5116e1 (patch)
tree52eaf40091f49547f7464416cc3b8d1510b61930
parent9ff3042650754f70c61c0b981407d99952b0c159 (diff)
downloadcpython-eeafb96b0877b78b1efd341f1103b2a81d5116e1.zip
cpython-eeafb96b0877b78b1efd341f1103b2a81d5116e1.tar.gz
cpython-eeafb96b0877b78b1efd341f1103b2a81d5116e1.tar.bz2
Fixed a typo.
-rw-r--r--Doc/library/struct.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/struct.rst b/Doc/library/struct.rst
index 63bf9b1..d29bd7b 100644
--- a/Doc/library/struct.rst
+++ b/Doc/library/struct.rst
@@ -50,7 +50,7 @@ The module defines the following exception and functions:
.. function:: unpack_from(fmt, buffer[,offset=0])
- Unpack the *buffer* according to tthe given format. The result is a tuple even
+ Unpack the *buffer* according to the given format. The result is a tuple even
if it contains exactly one item. The *buffer* must contain at least the amount
of data required by the format (``len(buffer[offset:])`` must be at least
``calcsize(fmt)``).