From 97e637a87fb45c4de970cca6cb783d93473c9d15 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Wed, 1 Aug 2018 12:55:53 -0400 Subject: Fixed typos in comments and docs. --- django/template/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/template/base.py') diff --git a/django/template/base.py b/django/template/base.py index f6a60ecdf7..9f4fe3363d 100644 --- a/django/template/base.py +++ b/django/template/base.py @@ -760,7 +760,7 @@ class Variable: # catching. Since this should only happen at compile time, that's # probably OK. - # Try to interpret values containg a period or an 'e'/'E' + # Try to interpret values containing a period or an 'e'/'E' # (possibly scientific notation) as a float; otherwise, try int. if '.' in var or 'e' in var.lower(): self.literal = float(var) -- cgit v1.3