summaryrefslogtreecommitdiff
path: root/tests/warn
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-05-15 22:38:28 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:54:40 +0200
commite88a99496cf4091ec16670a2fe656878fc055692 (patch)
tree84bdda7c3b7ec854f14c924f5d0c1492943c83ee /tests/warn
parent30b17d39adc7a7284b926cac6ada566eb1b62292 (diff)
downloadgobject-introspection-e88a99496cf4091ec16670a2fe656878fc055692.tar.gz
giscanner: rename the parse() method to parse_comment_blocks()
We already have a parse_comment_block() method parsing a single GTK-Doc comment block so it only seems natural to have a plural parse_comment_blocks() to go along with that.
Diffstat (limited to 'tests/warn')
-rw-r--r--tests/warn/warningtester.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/warn/warningtester.py b/tests/warn/warningtester.py
index 15822cfe..c78f92a7 100644
--- a/tests/warn/warningtester.py
+++ b/tests/warn/warningtester.py
@@ -115,7 +115,7 @@ def check(args):
transformer.parse(ss.get_symbols())
cbp = GtkDocCommentBlockParser()
- blocks = cbp.parse(ss.get_comments())
+ blocks = cbp.parse_comment_blocks(ss.get_comments())
main = MainTransformer(transformer, blocks)
main.transform()