Skip to content

Commit 699677e

Browse files
authored
Merge pull request #204 from jcsahnwaldt/jcsahnwaldt-patch-2
ruby_xml_xpath_expression.c: fix typo: XPatch -> XPath
2 parents a00888b + ee88b8a commit 699677e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext/libxml/ruby_xml_xpath_expression.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static VALUE rxml_xpath_expression_alloc(VALUE klass)
3535
/* call-seq:
3636
* XPath::Expression.compile(expression) -> XPath::Expression
3737
*
38-
* Compiles an XPatch expression. This improves performance
38+
* Compiles an XPath expression. This improves performance
3939
* when an XPath expression is called multiple times.
4040
*
4141
* doc = XML::Document.string('<header><first>hi</first></header>')
@@ -51,7 +51,7 @@ static VALUE rxml_xpath_expression_compile(VALUE klass, VALUE expression)
5151
/* call-seq:
5252
* XPath::Expression.new(expression) -> XPath::Expression
5353
*
54-
* Compiles an XPatch expression. This improves performance
54+
* Compiles an XPath expression. This improves performance
5555
* when an XPath expression is called multiple times.
5656
*
5757
* doc = XML::Document.string('<header><first>hi</first></header>')

0 commit comments

Comments
 (0)