summaryrefslogtreecommitdiffstats
path: root/Doc/faq/extending.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:45:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-12 14:45:25 (GMT)
commit0424eaf7533b0f386f6038dbb99f89e30fbbff76 (patch)
tree8319fe88ab1424714e8346aba8885075ed39b77a /Doc/faq/extending.rst
parent06171bd52a02173910d7ab8082850bbed0db1410 (diff)
downloadcpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.zip
cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.gz
cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.bz2
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
Diffstat (limited to 'Doc/faq/extending.rst')
-rw-r--r--Doc/faq/extending.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst
index fea5a57..ae0d905 100644
--- a/Doc/faq/extending.rst
+++ b/Doc/faq/extending.rst
@@ -348,7 +348,7 @@ complete example using the GNU readline library (you may want to ignore
{
line = readline (prompt);
- if (NULL == line) /* CTRL-D pressed */
+ if (NULL == line) /* Ctrl-D pressed */
{
done = 1;
}