s/_as_Temporarily_Immutable/_as_temporarily_immutable/g, because the
authorTim Peters <tim.peters@gmail.com>
Fri, 23 Aug 2002 17:48:23 +0000 (17:48 +0000)
committerTim Peters <tim.peters@gmail.com>
Fri, 23 Aug 2002 17:48:23 +0000 (17:48 +0000)
latter is what the code actually does.

Doc/lib/libsets.tex

index 74d09c791ff3168b95925040a24dde9d945b6351..865a9a16d931b76e8b097baf7567d42785e9c324 100644 (file)
@@ -199,14 +199,14 @@ construct sets of sets.
 A similar mechanism is needed by the \method{__contains__()} and
 \method{remove()} methods which need to hash an element to check
 for membership in a set.  Those methods check an element for hashability
-and, if not, check for a \method{_as_Temporarily_Immutable()} method
+and, if not, check for a \method{_as_temporarily_immutable()} method
 which returns the element wrapped by a class that provides temporary
 methods for \method{__hash__()}, \method{__eq__()}, and \method{__ne__()}.
 
 The alternate mechanism spares the need to build a separate copy of
 the original mutable object.
 
-\class{Set} objects implement the \method{_as_Temporarily_Immutable()}
+\class{Set} objects implement the \method{_as_temporarily_immutable()}
 method which returns the \class{Set} object wrapped by a new class
 \class{_TemporarilyImmutableSet}.