From f2d1b0ad3f06605e82844e45d39598ac56ad3da6 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Sat, 5 May 2012 09:16:48 -0700 Subject: Tweaked two docstrings. --- pystache/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pystache') 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 == '#': -- cgit v1.2.1