From 019abf58861eff6406c290f7360d28025d8f55e9 Mon Sep 17 00:00:00 2001 From: Eli Boyarski Date: Mon, 18 Sep 2017 17:22:27 +0300 Subject: [PATCH] Minor docstring grammar fix --- 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.