From b8cc6b50314539b78c6429206ceeae982e5789ef Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Mon, 23 Jun 2014 20:23:08 +0200 Subject: [PATCH] XPath::Parser#parse returns a XPath::Node instance --- lib/oga/xpath/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oga/xpath/parser.y b/lib/oga/xpath/parser.y index 765257d..dd7c91c 100644 --- a/lib/oga/xpath/parser.y +++ b/lib/oga/xpath/parser.y @@ -157,7 +157,7 @@ end # parser = Oga::XPath::Parser.new('//foo') # ast = parser.parse # - # @return [Oga::AST::Node] + # @return [Oga::XPath::Node] # def parse ast = yyparse(self, :yield_next_token)