summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2013-05-18 04:10:40 -0700
committerArmin Ronacher <armin.ronacher@active-4.com>2013-05-18 04:10:40 -0700
commit77e0fa2aecb5db68471785fe397c037911f0f889 (patch)
treef50398c2ff350d5a3261169e6e70008ba48f6778
parent728d69abad71e6b3664d1fc67a4584371ab43b10 (diff)
parentbdd09dd305dd66e92be919601821de42a0a41815 (diff)
downloadjinja2-77e0fa2aecb5db68471785fe397c037911f0f889.tar.gz
Merge pull request #188 from lemonad/master
Fixed typos: overriden to overridden
-rw-r--r--docs/faq.rst2
-rw-r--r--ext/django2jinja/django2jinja.py2
-rw-r--r--jinja2/compiler.py6
-rw-r--r--jinja2/sandbox.py2
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index d066bff..5c80d33 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -174,7 +174,7 @@ harder to maintain the code for older Python versions. If you really need
Python 2.3 support you either have to use `Jinja 1`_ or other templating
engines that still support 2.3.
-My Macros are overriden by something
+My Macros are overridden by something
------------------------------------
In some situations the Jinja scoping appears arbitrary:
diff --git a/ext/django2jinja/django2jinja.py b/ext/django2jinja/django2jinja.py
index 6d9e76c..ad9627f 100644
--- a/ext/django2jinja/django2jinja.py
+++ b/ext/django2jinja/django2jinja.py
@@ -609,7 +609,7 @@ def width_ratio(writer, node):
@node(core_tags.WithNode)
def with_block(writer, node):
writer.warn('with block expanded into set statement. This could cause '
- 'variables following that block to be overriden.', node)
+ 'variables following that block to be overridden.', node)
writer.start_block()
writer.write('set %s = ' % node.name)
writer.node(node.var)
diff --git a/jinja2/compiler.py b/jinja2/compiler.py
index b21cb38..d287ff6 100644
--- a/jinja2/compiler.py
+++ b/jinja2/compiler.py
@@ -663,16 +663,16 @@ class CodeGenerator(NodeVisitor):
# it without aliasing all the variables.
# this could be fixed in Python 3 where we have the nonlocal
# keyword or if we switch to bytecode generation
- overriden_closure_vars = (
+ overridden_closure_vars = (
func_frame.identifiers.undeclared &
func_frame.identifiers.declared &
(func_frame.identifiers.declared_locally |
func_frame.identifiers.declared_parameter)
)
- if overriden_closure_vars:
+ if overridden_closure_vars:
self.fail('It\'s not possible to set and access variables '
'derived from an outer scope! (affects: %s)' %
- ', '.join(sorted(overriden_closure_vars)), node.lineno)
+ ', '.join(sorted(overridden_closure_vars)), node.lineno)
# remove variables from a closure from the frame's undeclared
# identifiers.
diff --git a/jinja2/sandbox.py b/jinja2/sandbox.py
index a1cbb29..c12d53a 100644
--- a/jinja2/sandbox.py
+++ b/jinja2/sandbox.py
@@ -114,7 +114,7 @@ def is_internal_attribute(obj, attr):
"""Test if the attribute given is an internal python attribute. For
example this function returns `True` for the `func_code` attribute of
python objects. This is useful if the environment method
- :meth:`~SandboxedEnvironment.is_safe_attribute` is overriden.
+ :meth:`~SandboxedEnvironment.is_safe_attribute` is overridden.
>>> from jinja2.sandbox import is_internal_attribute
>>> is_internal_attribute(lambda: None, "func_code")