]> granicus.if.org Git - python/commitdiff
#10122: typo fix.
authorGeorg Brandl <georg@python.org>
Sat, 16 Oct 2010 18:51:05 +0000 (18:51 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 16 Oct 2010 18:51:05 +0000 (18:51 +0000)
Doc/library/functions.rst

index 42e4269ace409ba7c439f9e9a26593d7a2f89fbe..de99bbff74544180eb8c9f89b2e779f66d4f861c 100644 (file)
@@ -447,7 +447,7 @@ are always available.  They are listed here in alphabetical order.
 
 .. function:: getattr(object, name[, default])
 
-   Return the value of the named attributed of *object*.  *name* must be a string.
+   Return the value of the named attribute of *object*.  *name* must be a string.
    If the string is the name of one of the object's attributes, the result is the
    value of that attribute.  For example, ``getattr(x, 'foobar')`` is equivalent to
    ``x.foobar``.  If the named attribute does not exist, *default* is returned if