From 1432690dd89a154a62b4d4e170063e93a7ed0421 Mon Sep 17 00:00:00 2001
From: Adam Wardynski <award@.(B-4.4.46a)>
Date: Mon, 31 Jan 2011 18:12:45 +0100
Subject: [PATCH] Fix comment.

---
 libwccl/ops/rule.h | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libwccl/ops/rule.h b/libwccl/ops/rule.h
index 6b7a242..f66f903 100644
--- a/libwccl/ops/rule.h
+++ b/libwccl/ops/rule.h
@@ -30,7 +30,7 @@ public:
 	 * @param sentence_context SentenceContext of the Sentence to execute the Rule on.
 	 * @see execute() - equivalent method; the \link operator()() operator() \endlink allows
 	 * more convenient functional notation, however if you only have a pointer
-	 * you might prefer the apply method as shown below. The choice is yours.
+	 * you might prefer the execute method as shown below. The choice is yours.
 	 * \code
 	 * Bool res;
 	 * res = rule(sc);
@@ -39,7 +39,7 @@ public:
 	 * // or if you have a pointer...
 	 * res = (*rule_ptr)(sc);
 	 * // versus
-	 * res = rule_ptr->apply(sc);
+	 * res = rule_ptr->execute(sc);
 	 * \endcode
 	 */
 	Bool operator()(SentenceContext& sentence_context);
@@ -49,8 +49,6 @@ public:
 	 * not execute any of the rules if condition is false.
 	 * @returns True if any of the actions made a change, False otherwise.
 	 * @param sentence_context SentenceContext of the Sentence to execute the Rule on.
-	 * @note The result is conciously marked as const, so a copy of Rule data
-	 * is not created unless necessary.
 	 * @see \link operator()() operator() \endlink - an equivalent of this method that allows
 	 * functional notation, treating Rule directly as a function
 	 */
-- 
GitLab