diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst
index a4248d7aa..327b5472a 100644
--- a/docs/intro/tutorial.rst
+++ b/docs/intro/tutorial.rst
@@ -315,19 +315,19 @@ is inside a ``
`` element, in fact the *second* ```` element.
So we can select each ``- `` element belonging to the sites list with this
code::
- sel.xpath('//ul/li')
+ response.xpath('//ul/li')
And from them, the sites descriptions::
- sel.xpath('//ul/li/text()').extract()
+ response.xpath('//ul/li/text()').extract()
The sites titles::
- sel.xpath('//ul/li/a/text()').extract()
+ response.xpath('//ul/li/a/text()').extract()
And the sites links::
- sel.xpath('//ul/li/a/@href').extract()
+ response.xpath('//ul/li/a/@href').extract()
As we've said before, each ``.xpath()`` call returns a list of selectors, so we can
concatenate further ``.xpath()`` calls to dig deeper into a node. We are going to use