Merge pull request #1412 from mlyundin/master

Minor method name fix
This commit is contained in:
Mikhail Korobov 2015-08-06 00:54:42 +05:00
commit 2bca27ef2c
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ More importantly ``response`` has a ``selector`` attribute which is an instance
:class:`~scrapy.selector.Selector` class, instantiated with this particular ``response``.
You can run queries on ``response`` by calling ``response.selector.xpath()`` or
``response.selector.css()``. There are also some convenience shortcuts like ``response.xpath()``
or ``response.xml()`` which map directly to ``response.selector.xpath()`` and
or ``response.css()`` which map directly to ``response.selector.xpath()`` and
``response.selector.css()``.