diff options
author | Eli Boyarski <eli.boyarski@gmail.com> | 2017-09-18 17:24:38 +0300 |
---|---|---|
committer | Adrian <adrian@planetcoding.net> | 2017-09-18 16:24:38 +0200 |
commit | 4750cf7c69c0ce2a0c44cc68c2fc06b984774e5e (patch) | |
tree | 7051dd8d8f900faa45a796d16b328ae2e23ad3fd | |
parent | fc5be479ddb3ffd2687607aada5a53bd5304f060 (diff) | |
download | jinja2-4750cf7c69c0ce2a0c44cc68c2fc06b984774e5e.tar.gz |
Minor docstring grammar fix (#772)
-rw-r--r-- | jinja2/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jinja2/environment.py b/jinja2/environment.py index 2a4d3d7..549d9af 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -809,7 +809,7 @@ class Environment(object): @internalcode def get_template(self, name, parent=None, globals=None): """Load a template from the loader. If a loader is configured this - method ask the loader for the template and returns a :class:`Template`. + method asks the loader for the template and returns a :class:`Template`. If the `parent` parameter is not `None`, :meth:`join_path` is called to get the real template name before loading. |