From ea4199f8e17a6b019e8b9da45791d1af33f978df Mon Sep 17 00:00:00 2001 From: Mikhail Lyundin Date: Wed, 5 Aug 2015 22:42:53 +0300 Subject: [PATCH] Minor method name fix --- docs/intro/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 73b4cd034..e9df9c2d2 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -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()``.