From: Brett Cannon Date: Tue, 20 May 2003 02:54:41 +0000 (+0000) Subject: Fixing typo from previous patch. X-Git-Tag: v2.2.3c1~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52b87437ca9b4cf7565ec2af7f276aaad929a480;p=thirdparty%2FPython%2Fcpython.git Fixing typo from previous patch. --- diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index 810cf9cb7312..8da63481d436 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -44,9 +44,9 @@ the server at the same host and port: \begin{classdesc}{HTTPSConnection}{host\optional{, port, key_file, cert_file}} A subclass of \class{HTTPConnection} that uses SSL for communication with secure servers. Default port is \code{443}. -\var{keyfile} is +\var{key_file} is the name of a PEM formatted file that contains your private -key. \var{certfile} is a PEM formatted certificate chain file. +key. \var{cert_file} is a PEM formatted certificate chain file. \warning{This does not do any certificate verification!} \end{classdesc}