summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-01-14 13:09:04 -0800
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-01-18 13:26:22 -0800
commit5c91b4baa5a58f2982efe0799535465688928b15 (patch)
tree59e5252107c5fcc31a8c25dc487ba0d4de2fc8d6
parent182803baab9cfece9bba7a716131236d150be3e8 (diff)
downloadpystache-5c91b4baa5a58f2982efe0799535465688928b15.tar.gz
Tweaked Parser.parse() docstring.
-rw-r--r--pystache/parser.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pystache/parser.py b/pystache/parser.py
index 047fe96..6351665 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -73,10 +73,9 @@ class Parser(object):
def parse(self, template, index=0, section_key=None):
"""
- Parse a template string into a syntax tree using current attributes.
+ Parse a template string into a parse tree.
- This method uses the current RenderEngine instance's attributes,
- including the current tag delimiter, etc.
+ This method uses the current tag delimiter.
"""
parse_tree = []