Skip to content

Commit

Permalink
add alias; fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Aug 9, 2011
1 parent 6a67584 commit 4db3615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ something higher or lower, but at least must be 1), use the
Explicit Tween Configuration
----------------------------

Note that the transaction manager is a Pryamid "tween", and it can be used in
Note that the transaction manager is a Pyramid "tween", and it can be used in
the explicit tween list if its implicit position in the tween chain is
incorrect (see the output of ``paster ptweens``)::

Expand Down
2 changes: 1 addition & 1 deletion pyramid_tm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ def includeme(config):
- If none of the above conditions are True, the transaction will be
committed (via ``transaction.commit()``).
"""
config.add_tween(tm_tween_factory, under=EXCVIEW)
config.add_tween(tm_tween_factory, alias='tm', under=EXCVIEW)

0 comments on commit 4db3615

Please sign in to comment.