From f92fa83a710288ad4e104753107acee7a8e51810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ricardo?= Date: Thu, 16 Apr 2015 11:45:47 -0400 Subject: [PATCH] Fix small typo --- docs/topics/loaders.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/loaders.rst b/docs/topics/loaders.rst index d571d564d..236725309 100644 --- a/docs/topics/loaders.rst +++ b/docs/topics/loaders.rst @@ -61,7 +61,7 @@ In other words, data is being collected by extracting it from two XPath locations, using the :meth:`~ItemLoader.add_xpath` method. This is the data that will be assigned to the ``name`` field later. -Afterwords, similar calls are used for ``price`` and ``stock`` fields +Afterwards, similar calls are used for ``price`` and ``stock`` fields (the later using a CSS selector with the :meth:`~ItemLoader.add_css` method), and finally the ``last_update`` field is populated directly with a literal value (``today``) using a different method: :meth:`~ItemLoader.add_value`.