summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-12-20 19:58:11 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-12-20 19:58:11 (GMT)
commitb688573766bc662909d4b0cdb4231feb689ed958 (patch)
treecaf7bc15ecba19e85a93a05c35e84c35230d1deb /Doc
parent1be2ac9cd6e72dd5116a24d173b66f9ae4ec51f0 (diff)
downloadcpython-b688573766bc662909d4b0cdb4231feb689ed958.zip
cpython-b688573766bc662909d4b0cdb4231feb689ed958.tar.gz
cpython-b688573766bc662909d4b0cdb4231feb689ed958.tar.bz2
Two grammar fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/liburlparse.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/liburlparse.tex b/Doc/lib/liburlparse.tex
index 8603605..0473aed 100644
--- a/Doc/lib/liburlparse.tex
+++ b/Doc/lib/liburlparse.tex
@@ -89,7 +89,7 @@ information on the result object.
\begin{funcdesc}{urlunparse}{parts}
Construct a URL from a tuple as returned by \code{urlparse()}.
-The \var{parts} argument be any six-item iterable.
+The \var{parts} argument can be any six-item iterable.
This may result in a slightly different, but equivalent URL, if the
URL that was parsed originally had unnecessary delimiters (for example,
a ? with an empty query; the RFC states that these are equivalent).
@@ -133,7 +133,7 @@ information on the result object.
\begin{funcdesc}{urlunsplit}{parts}
Combine the elements of a tuple as returned by \function{urlsplit()}
into a complete URL as a string.
-The \var{parts} argument be any five-item iterable.
+The \var{parts} argument can be any five-item iterable.
This may result in a slightly different, but equivalent URL, if the
URL that was parsed originally had unnecessary delimiters (for example,
a ? with an empty query; the RFC states that these are equivalent).