Consistent code highlighting.
authorNiko W <der@nik0.de>
Sat, 12 May 2012 09:16:30 +0000 (11:16 +0200)
committerNiko W <der@nik0.de>
Sat, 12 May 2012 09:16:30 +0000 (11:16 +0200)
docs/writing/structure.rst

index ca07335..462ca12 100644 (file)
@@ -259,7 +259,7 @@ or a method. The 'decorated' function or method will replace the original
 in Python it can be done 'manually' but using the @decorator syntax is
 clearer and thus prefered.
 
-.. code-block:: Python
+.. code-block:: python
 
     def foo():
         # do something
@@ -306,7 +306,7 @@ Some guidelines allow to avoid this issue:
 
 **Bad**
 
-.. code-block:: Python
+.. code-block:: python
 
     a = 1
     a = 'a string'