Skip to content

Commit 3a2850b

Browse files
author
Zearin
committed
Lets ▶︎ Let's (where appropriate)
1 parent b7f0d20 commit 3a2850b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/scenarios/scrape.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module instead of the already built-in urlib2 due to improvements in speed and
2424
readability. You can easily install both using ``pip install lxml`` and
2525
``pip install requests``.
2626

27-
Lets start with the imports:
27+
Let's start with the imports:
2828

2929
.. code-block:: python
3030
@@ -71,7 +71,7 @@ Knowing this we can create the correct XPath query and use the lxml
7171
#This will create a list of prices
7272
prices = tree.xpath('//span[@class="item-price"]/text()')
7373
74-
Lets see what we got exactly:
74+
Let's see what we got exactly:
7575

7676
.. code-block:: python
7777

docs/scenarios/speed.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ in a similar way like in standard C. For example `cdef int n,k,i` in line 3. Th
153153
allows the Cython compiler to generate more efficient C code from the second code. While standard Python code is saved in :file:`*.py` files,
154154
Cython code is saved in :file:`*.pyx` files.
155155

156-
And what is with the speed? So lets try it!
156+
And what is with the speed? So let's try it!
157157

158158
.. code-block:: python
159159

0 commit comments

Comments
 (0)