summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robles <drobles@gmail.com>2015-01-16 17:47:06 -0800
committerMarkus Holtermann <info@markusholtermann.eu>2015-01-17 03:06:26 +0100
commiteb6a07e0697cf4dbaf33915e60fce56d7705ec22 (patch)
treebc8bbc72b189e573f7046bfe2bc2fa0eaa2224b5
parent8be1b8b488760959410be93e460944970b8199d6 (diff)
[1.8.x] Fixed typo in 'Django Template Language'
Backport of d60b96d98881b47c845125e82269ea6a9b268fbb from master
-rw-r--r--django/template/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py
index 045ec72529..3d26bcc945 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -5,7 +5,7 @@ The django.template namespace contains two independent subsystems:
1. Multiple Template Engines: support for pluggable template backends,
built-in backends and backend-independent APIs
-2. Django Template Langage: Django's own template engine, including its
+2. Django Template Language: Django's own template engine, including its
built-in loaders, context processors, tags and filters.
Ideally these subsystems would be implemented in distinct packages. However