summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-05-05 09:16:48 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-05-05 09:16:48 -0700
commitf2d1b0ad3f06605e82844e45d39598ac56ad3da6 (patch)
treeaca781b0bceb0dcc0912eb800d6ca1e86b41acdc /pystache
parentcf1c649f75313b5af1fca9a726d4760920b2f3ac (diff)
downloadpystache-f2d1b0ad3f06605e82844e45d39598ac56ad3da6.tar.gz
Tweaked two docstrings.
Diffstat (limited to 'pystache')
-rw-r--r--pystache/parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pystache/parser.py b/pystache/parser.py
index 3a014ce..9e366cb 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -176,7 +176,7 @@ class Parser(object):
def _make_interpolation_node(self, tag_type, tag_key, leading_whitespace):
"""
- Create and return a node of the parse tree.
+ Create and return a non-section node for the parse tree.
"""
# TODO: switch to using a dictionary instead of a bunch of ifs and elifs.
@@ -202,7 +202,7 @@ class Parser(object):
def _make_section_node(self, template, tag_type, tag_key, parsed_section,
section_start_index, section_end_index):
"""
- Create and return a node of the parse tree.
+ Create and return a section node for the parse tree.
"""
if tag_type == '#':