]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix a few small typos in the docs 437/head
authorAlex Chan <alex@alexwlchan.net>
Sun, 5 Apr 2015 21:42:34 +0000 (22:42 +0100)
committerAlex Chan <alex@alexwlchan.net>
Sun, 5 Apr 2015 21:42:34 +0000 (22:42 +0100)
docs/api.rst
docs/faq.rst
docs/switching.rst

index 02a8138c9a1d6a333134c750ffcd3904674f3ea8..d143ebc59e40a16b9baa1a0ed38b47b17212d95f 100644 (file)
@@ -167,7 +167,7 @@ useful if you want to dig deeper into Jinja2 or :ref:`develop extensions
         provided as `exc` is raised if something with the generated undefined
         object is done that the undefined object does not allow.  The default
         exception is :exc:`UndefinedError`.  If a `hint` is provided the
-        `name` may be ommited.
+        `name` may be omitted.
 
         The most common way to create an undefined object is by providing
         a name only::
@@ -187,7 +187,7 @@ useful if you want to dig deeper into Jinja2 or :ref:`develop extensions
             return environment.undefined('no first item, sequence was empty')            
 
         If it the `name` or `obj` is known (for example because an attribute
-        was accessed) it shold be passed to the undefined object, even if
+        was accessed) it should be passed to the undefined object, even if
         a custom `hint` is provided.  This gives undefined objects the
         possibility to enhance the error message.
 
index 00a4d0d78ad55bc0fe18dd5607bf766da7cd6e1a..3869684b7279387814bee751c6154c7009b7b829 100644 (file)
@@ -135,7 +135,7 @@ the traceback may be incomplete.  There is currently no good workaround
 for Jython or the AppEngine as ctypes is unavailable there and it's not
 possible to use the debugsupport extension.
 
-If you are working in the Google Appengine development server you can
+If you are working in the Google AppEngine development server you can
 whitelist the ctypes module to restore the tracebacks.  This however won't
 work in production environments::
 
index 32f04fdd3b5ed8b03468f8b421d0b96d84de4a6f..ab94124575ef5e297458bd03ced3b02188b58cf3 100644 (file)
@@ -4,7 +4,7 @@ Switching from other Template Engines
 .. highlight:: html+jinja
 
 If you have used a different template engine in the past and want to switch
-to Jinja2 here is a small guide that shows the basic syntatic and semantic
+to Jinja2 here is a small guide that shows the basic syntactic and semantic
 changes between some common, similar text template engines for Python.
 
 Jinja1