summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-04-08 01:33:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-04-08 01:33:10 (GMT)
commiteba00041989563b7209d762b971165c4d449aac2 (patch)
tree9d891d4271b8c4f0a72a40235333916cee2e69c3 /PC
parent5b1070a32b36b0f56f2f5fc05df440ad9b3fb120 (diff)
downloadcpython-eba00041989563b7209d762b971165c4d449aac2.zip
cpython-eba00041989563b7209d762b971165c4d449aac2.tar.gz
cpython-eba00041989563b7209d762b971165c4d449aac2.tar.bz2
Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit
Diffstat (limited to 'PC')
-rw-r--r--PC/_winreg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/PC/_winreg.c b/PC/_winreg.c
index 53d33c4..74d3343 100644
--- a/PC/_winreg.c
+++ b/PC/_winreg.c
@@ -291,20 +291,20 @@ PyDoc_STRVAR(SetValueEx_doc,
"the configuration registry. This helps the registry perform efficiently.");
PyDoc_STRVAR(DisableReflectionKey_doc,
-"Disables registry reflection for 32bit processes running on a 64bit\n"
+"Disables registry reflection for 32-bit processes running on a 64-bit\n"
"Operating System. Will generally raise NotImplemented if executed on\n"
-"a 32bit Operating System.\n"
+"a 32-bit Operating System.\n"
"If the key is not on the reflection list, the function succeeds but has no effect.\n"
"Disabling reflection for a key does not affect reflection of any subkeys.");
PyDoc_STRVAR(EnableReflectionKey_doc,
"Restores registry reflection for the specified disabled key.\n"
-"Will generally raise NotImplemented if executed on a 32bit Operating System.\n"
+"Will generally raise NotImplemented if executed on a 32-bit Operating System.\n"
"Restoring reflection for a key does not affect reflection of any subkeys.");
PyDoc_STRVAR(QueryReflectionKey_doc,
"bool = QueryReflectionKey(hkey) - Determines the reflection state for the specified key.\n"
-"Will generally raise NotImplemented if executed on a 32bit Operating System.\n");
+"Will generally raise NotImplemented if executed on a 32-bit Operating System.\n");
/* PyHKEY docstrings */
PyDoc_STRVAR(PyHKEY_doc,