Some typos.
authorGeorg Brandl <georg@python.org>
Fri, 19 Sep 2008 09:55:17 +0000 (09:55 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 19 Sep 2008 09:55:17 +0000 (09:55 +0000)
--HG--
branch : trunk

jinja2/bccache.py
jinja2/environment.py

index de6d2b402a3a35bfcecf1f0d05e8fb3cca2fdf86..e11bad5781fde23eeaa700e2ebf2a7c2f309c87e 100644 (file)
@@ -236,7 +236,7 @@ class MemcachedBytecodeCache(BytecodeCache):
 
     (Unfortunately the django cache interface is not compatible because it
     does not support storing binary data, only unicode.  You can however pass
-    the underlaying cache client to the bytecode cache which is available
+    the underlying cache client to the bytecode cache which is available
     as `django.core.cache.cache._client`.)
 
     The minimal interface for the client passed to the constructor is this:
index a64b469336d6bd82cdaac5cbc7ea0aeaa771f2aa..fa8ad6c05f7d8b85f6921c4305f7bba30f906bc3 100644 (file)
@@ -24,9 +24,9 @@ _spontaneous_environments = LRUCache(10)
 
 
 def get_spontaneous_environment(*args):
-    """Return a new spontaneus environment.  A spontaneus environment is an
-    unnamed and unaccessable (in theory) environment that is used for
-    template generated from a string and not from the file system.
+    """Return a new spontaneous environment.  A spontaneous environment is an
+    unnamed and unaccessible (in theory) environment that is used for
+    templates generated from a string and not from the file system.
     """
     try:
         env = _spontaneous_environments.get(args)
@@ -528,7 +528,7 @@ class Template(object):
         t.filename = code.co_filename
         t.blocks = namespace['blocks']
 
-        # render function and module 
+        # render function and module
         t.root_render_func = namespace['root']
         t._module = None