From 0d61249deea51a3ead5bf9b64ec1728bc1a97b20 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 15 Mar 2012 08:24:13 +0100 Subject: [PATCH] Fix more markup. --- pep-0008.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0008.txt b/pep-0008.txt index 19fc9bb6d..30a4dddf2 100644 --- a/pep-0008.txt +++ b/pep-0008.txt @@ -506,7 +506,7 @@ There's also the style of using a short unique prefix to group related names together. This is not used much in Python, but it is mentioned for completeness. For example, the ``os.stat()`` function returns a tuple whose items traditionally have names like ``st_mode``, -``st_size`, ``st_mtime`` and so on. (This is done to emphasize the +``st_size``, ``st_mtime`` and so on. (This is done to emphasize the correspondence with the fields of the POSIX system call struct, which helps programmers familiar with that.)