Skip to content
Snippets Groups Projects
Commit 5abf043c authored by eliasz's avatar eliasz
Browse files

fixed comment

parent 7b458875
Branches
No related merge requests found
......@@ -32,11 +32,11 @@ public:
* Bool res;
* res = ruleseq(sentence);
* // versus
* res = ruleseq.execute(sentence);
* res = ruleseq.execute_once(sentence);
* // or if you have a pointer...
* res = (*ruleseq_ptr)(sentence);
* // versus
* res = ruleseq_ptr->execute(sentence);
* res = ruleseq_ptr->execute_once(sentence);
* \endcode
*/
Bool operator()(const boost::shared_ptr<Corpus2::Sentence>& sentence);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment