Merge pull request #147 from okin/master
authorKenneth Reitz <me@kennethreitz.com>
Sat, 12 May 2012 14:24:53 +0000 (07:24 -0700)
committerKenneth Reitz <me@kennethreitz.com>
Sat, 12 May 2012 14:24:53 +0000 (07:24 -0700)
Consistent syntax highlighting.

1  2 
docs/writing/structure.rst

@@@ -253,14 -252,14 +253,14 @@@ relatively long life of their own in th
  Decorators
  ----------
  
 -Python language provides a simple yet powerful syntax called 'decorators'.
 +The Python language provides a simple yet powerful syntax called 'decorators'.
  A decorator is a function or a class that wraps (or decorate) a function
  or a method. The 'decorated' function or method will replace the original
 -'undecorated' function or method. Because function are first-class objects
 +'undecorated' function or method. Because functions are first-class objects
  in Python it can be done 'manually' but using the @decorator syntax is
 -clearer and thus prefered.
 +clearer and thus preferred.
  
- .. code-block:: Python
+ .. code-block:: python
  
      def foo():
          # do something