Skip to content

Commit

Permalink
Few typos in jinja2.utils
Browse files Browse the repository at this point in the history
  • Loading branch information
florentx committed Feb 5, 2012
1 parent 99b2285 commit 0ec4f76
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions jinja2/utils.py
Expand Up @@ -67,7 +67,7 @@ def concat(gen):
del _test_gen_bug, _error


# for python 2.x we create outselves a next() function that does the
# for python 2.x we create ourselves a next() function that does the
# basics without exception catching.
try:
next = next
Expand Down Expand Up @@ -132,7 +132,7 @@ def get_exported_names(context):


def evalcontextfunction(f):
"""This decoraotr can be used to mark a function or method as an eval
"""This decorator can be used to mark a function or method as an eval
context callable. This is similar to the :func:`contextfunction`
but instead of passing the context, an evaluation context object is
passed. For more information about the eval context, see
Expand Down Expand Up @@ -195,7 +195,7 @@ def clear_caches():


def import_string(import_name, silent=False):
"""Imports an object based on a string. This use useful if you want to
"""Imports an object based on a string. This is useful if you want to
use import paths as endpoints or something similar. An import path can
be specified either in dotted notation (``xml.sax.saxutils.escape``)
or with a colon as object delimiter (``xml.sax.saxutils:escape``).
Expand Down Expand Up @@ -412,7 +412,7 @@ def __getnewargs__(self):
return (self.capacity,)

def copy(self):
"""Return an shallow copy of the instance."""
"""Return a shallow copy of the instance."""
rv = self.__class__(self.capacity)
rv._mapping.update(self._mapping)
rv._queue = deque(self._queue)
Expand Down Expand Up @@ -462,7 +462,7 @@ def __getitem__(self, key):
"""Get an item from the cache. Moves the item up so that it has the
highest priority then.
Raise an `KeyError` if it does not exist.
Raise a `KeyError` if it does not exist.
"""
rv = self._mapping[key]
if self._queue[-1] != key:
Expand Down Expand Up @@ -497,7 +497,7 @@ def __setitem__(self, key, value):

def __delitem__(self, key):
"""Remove an item from the cache dict.
Raise an `KeyError` if it does not exist.
Raise a `KeyError` if it does not exist.
"""
self._wlock.acquire()
try:
Expand Down Expand Up @@ -598,7 +598,7 @@ def __call__(self):

# try markupsafe first, if that fails go with Jinja2's bundled version
# of markupsafe. Markupsafe was previously Jinja2's implementation of
# the Markup object but was moved into a separate package in a patchleve
# the Markup object but was moved into a separate package in a patchlevel
# release
try:
from markupsafe import Markup, escape, soft_unicode
Expand Down

0 comments on commit 0ec4f76

Please sign in to comment.