[Python-checkins] r62928 - python/trunk/Doc/library/_winreg.rst

georg.brandl python-checkins at python.org
Fri May 9 08:10:43 CEST 2008


Author: georg.brandl
Date: Fri May  9 08:10:43 2008
New Revision: 62928

Log:
#2781: fix function name.


Modified:
   python/trunk/Doc/library/_winreg.rst

Modified: python/trunk/Doc/library/_winreg.rst
==============================================================================
--- python/trunk/Doc/library/_winreg.rst	(original)
+++ python/trunk/Doc/library/_winreg.rst	Fri May  9 08:10:43 2008
@@ -150,7 +150,7 @@
    *key* is an already open key, or one of the predefined  :const:`HKEY_\*`
    constants.
 
-   It is not necessary to call RegFlushKey to change a key. Registry changes are
+   It is not necessary to call :func:`FlushKey` to change a key. Registry changes are
    flushed to disk by the registry using its lazy  flusher.  Registry changes are
    also flushed to disk at system  shutdown.  Unlike :func:`CloseKey`, the
    :func:`FlushKey` method  returns only when all the data has been written to the
@@ -163,7 +163,7 @@
       isn't.
 
 
-.. function:: RegLoadKey(key, sub_key, file_name)
+.. function:: LoadKey(key, sub_key, file_name)
 
    Creates a subkey under the specified key and stores registration  information
    from a specified file into that subkey.


More information about the Python-checkins mailing list