[valadoc] libvaladoc/api: rename tree.parse_comments to process_comments



commit 8f658cbf2a4060959a1a8390f15c3f6582edd6c4
Author: Florian Brosch <flo brosch gmail com>
Date:   Thu Oct 28 19:40:40 2010 +0200

    libvaladoc/api: rename tree.parse_comments to process_comments

 src/libvaladoc/api/tree.vala |    3 +--
 src/valadoc/valadoc.vala     |    2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/src/libvaladoc/api/tree.vala b/src/libvaladoc/api/tree.vala
index f65d9a2..639cfc6 100644
--- a/src/libvaladoc/api/tree.vala
+++ b/src/libvaladoc/api/tree.vala
@@ -407,8 +407,7 @@ public class Valadoc.Api.Tree {
 		}
 	}
 
-	// TODO Rename to process_comments
-	public void parse_comments (DocumentationParser docparser) {
+	public void process_comments (DocumentationParser docparser) {
 		process_wiki (docparser);
 
 		foreach (Package pkg in this.packages) {
diff --git a/src/valadoc/valadoc.vala b/src/valadoc/valadoc.vala
index 77c13e2..74bff77 100755
--- a/src/valadoc/valadoc.vala
+++ b/src/valadoc/valadoc.vala
@@ -204,7 +204,7 @@ public class ValaDoc : Object {
 			return quit (reporter);
 		}
 
-		doctree.parse_comments (docparser);
+		doctree.process_comments (docparser);
 		if (reporter.errors > 0) {
 			return quit (reporter);
 		}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]