From 4750cf7c69c0ce2a0c44cc68c2fc06b984774e5e Mon Sep 17 00:00:00 2001 From: Eli Boyarski Date: Mon, 18 Sep 2017 17:24:38 +0300 Subject: [PATCH] Minor docstring grammar fix (#772) --- jinja2/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jinja2/environment.py b/jinja2/environment.py index 2a4d3d7da..549d9afab 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -809,7 +809,7 @@ def _load_template(self, name, globals): @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.