]> granicus.if.org Git - python/commitdiff
Fix minor typos.
authorRaymond Hettinger <python@rcn.com>
Mon, 12 May 2003 03:23:51 +0000 (03:23 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 12 May 2003 03:23:51 +0000 (03:23 +0000)
Doc/lib/liblocale.tex
Doc/lib/libmimetools.tex
Doc/lib/libpyexpat.tex
Doc/lib/librepr.tex

index 4457f33d53e7b94379ca77b4685812aa8d0f6145..85d03392acbf8e0b5247d60d58d0830865208f41 100644 (file)
@@ -426,8 +426,8 @@ threads that happen to run before the settings have been restored.
 
 If, when coding a module for general use, you need a locale
 independent version of an operation that is affected by the locale
-(e.g. \function{string.lower()}, or certain formats used with
-\function{time.strftime()})), you will have to find a way to do it
+(such as \function{string.lower()}, or certain formats used with
+\function{time.strftime()}), you will have to find a way to do it
 without using the standard library routine.  Even better is convincing
 yourself that using locale settings is okay.  Only as a last resort
 should you document that your module is not compatible with
index 1baff493cb1fba685a297d2583ad0180380a4432..92679ed3f37a7383fe12a08976043924c92200be 100644 (file)
@@ -88,7 +88,7 @@ This is a list of strings.  For parameters of the form
 
 \begin{methoddesc}{getparam}{name}
 Return the \var{value} of the first parameter (as returned by
-\method{getplist()} of the form \samp{\var{name}=\var{value}} for the
+\method{getplist()}) of the form \samp{\var{name}=\var{value}} for the
 given \var{name}.  If \var{value} is surrounded by quotes of the form
 `\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed.
 \end{methoddesc}
index 442bed1b48fcdf0aa4c49cc7e8f2049972ed3c76..e1f9575527bc655378f248d58454306f404f466a 100644 (file)
@@ -580,7 +580,7 @@ entity instead of an internal entity.
 
 \begin{datadescni}{XML_ERROR_BAD_CHAR_REF}
 A character reference referred to a character which is illegal in XML
-(for example, character \code{0}, or `\code{\&\#0;}'.
+(for example, character \code{0}, or `\code{\&\#0;}').
 \end{datadescni}
 
 \begin{datadescni}{XML_ERROR_BINARY_ENTITY_REF}
index 8dfd0b445515ec747771434a03f6e80d00937a5f..b71aae1ec1cfc64e7c68c7f64ea3777d0b267b2e 100644 (file)
@@ -96,7 +96,7 @@ and methods which format specific object types.
   Formatting methods for specific types are implemented as methods
   with a name based on the type name.  In the method name, \var{type}
   is replaced by
-  \code{string.join(string.split(type(\var{obj}).__name__, '_')}.
+  \code{string.join(string.split(type(\var{obj}).__name__, '_'))}.
   Dispatch to these methods is handled by \method{repr1()}.
   Type-specific methods which need to recursively format a value
   should call \samp{self.repr1(\var{subobj}, \var{level} - 1)}.