@@ -119,7 +119,7 @@ selectors. This API can be used for quickly selecting nested data::
119119 'image4_thumb.jpg',
120120 'image5_thumb.jpg']
121121
122- If you want to extract only first matched element, you can call the
122+ If you want to extract only the first matched element, you can call the
123123selector ``.get() `` (or its alias ``.extract_first() `` commonly used in
124124previous parsel versions)::
125125
@@ -382,7 +382,7 @@ Another common case would be to extract all direct ``<p>`` children::
382382For more details about relative XPaths see the `Location Paths `_ section in the
383383XPath specification.
384384
385- .. _Location Paths : http ://www.w3.org/TR/xpath#location-paths
385+ .. _Location Paths : https ://www.w3.org/TR/xpath#location-paths
386386
387387
388388Using EXSLT extensions
@@ -582,7 +582,7 @@ you may want to take a look first at this `XPath tutorial`_.
582582
583583
584584.. _`XPath tutorial` : http://www.zvon.org/comp/r/tut-XPath_1.html
585- .. _`this post from ScrapingHub's blog` : http ://blog.scrapinghub.com/2014/07/17/xpath-tips-from-the-web-scraping-trenches/
585+ .. _`this post from ScrapingHub's blog` : https ://blog.scrapinghub.com/2014/07/17/xpath-tips-from-the-web-scraping-trenches/
586586
587587
588588Using text nodes in a condition
@@ -624,7 +624,7 @@ But using the ``.`` to mean the node, works::
624624 >>> sel.xpath("//a[contains(., 'Next Page')]").getall()
625625 ['<a href="#">Click here to go to the <strong>Next Page</strong></a>']
626626
627- .. _`XPath string function` : http ://www.w3.org/TR/xpath/#section-String-Functions
627+ .. _`XPath string function` : https ://www.w3.org/TR/xpath/#section-String-Functions
628628
629629Beware of the difference between //node[1] and (//node)[1]
630630~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments