Changeset 440

Show
Ignore:
Timestamp:
05/28/07 00:46:44 (2 years ago)
Author:
athomas
Message:

cly: Minor doc reformatting.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cly/trunk/doc/developers-guide.rst

    r439 r440  
    9999These attributes can be set in three ways: 
    100100 
    101   - As keyword arguments passed to the node constructor: 
     101As keyword arguments passed to the node constructor: 
    102102 
    103103    .. code-block:: python 
     
    105105        Node('Help', pattern=r'.+') 
    106106 
    107   - As keyword arguments passed to the node when it is "called": 
     107As keyword arguments passed to the node when it is "called": 
    108108 
    109109    .. code-block:: python 
     
    111111        Node('Help')(pattern=r'.+') 
    112112 
    113   - By subclassing the node and defining the attribute as a class attribute: 
     113By subclassing the node and defining the attribute as a class attribute: 
    114114 
    115115    .. code-block:: python