summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-09 06:10:43 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-09 06:10:43 (GMT)
commit5117409a537e70a5a723f4b8c247c8ab6bf22718 (patch)
tree480dc6844c1761f4ef8444bfc9ca793b2d4b6242 /Doc
parentada12e30d1f3147e07d744ceabd16890385f4304 (diff)
downloadcpython-5117409a537e70a5a723f4b8c247c8ab6bf22718.zip
cpython-5117409a537e70a5a723f4b8c247c8ab6bf22718.tar.gz
cpython-5117409a537e70a5a723f4b8c247c8ab6bf22718.tar.bz2
#2781: fix function name.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/_winreg.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/_winreg.rst b/Doc/library/_winreg.rst
index 6aed8cb..9b89950 100644
--- a/Doc/library/_winreg.rst
+++ b/Doc/library/_winreg.rst
@@ -150,7 +150,7 @@ This module offers the following functions:
*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 @@ This module offers the following functions:
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.