Skip to content

Commit 2cfe9e4

Browse files
committed
small doc style fixes
1 parent e122c56 commit 2cfe9e4

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

docs/faq.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Scrapy is supported under Python 2.7 only.
3333
Python 2.6 support was dropped starting at Scrapy 0.20.
3434

3535
Does Scrapy work with Python 3?
36-
---------------------------------
36+
-------------------------------
3737

3838
No, but there are plans to support Python 3.3+.
3939
At the moment, Scrapy works with Python 2.7.
@@ -57,8 +57,6 @@ focus on the real problems we need to solve.
5757
We'd be proud if Scrapy serves as an inspiration for other projects. Feel free
5858
to steal from us!
5959

60-
.. _Django: https://www.djangoproject.com/
61-
6260
Does Scrapy work with HTTP proxies?
6361
-----------------------------------
6462

docs/topics/email.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Password to use for SMTP authentication, along with :setting:`MAIL_USER`.
164164
.. setting:: MAIL_TLS
165165

166166
MAIL_TLS
167-
---------
167+
--------
168168

169169
Default: ``False``
170170

@@ -173,7 +173,7 @@ Enforce using STARTTLS. STARTTLS is a way to take an existing insecure connectio
173173
.. setting:: MAIL_SSL
174174

175175
MAIL_SSL
176-
---------
176+
--------
177177

178178
Default: ``False``
179179

docs/topics/media-pipeline.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ the same media to that queue. This avoids downloading the same media more than
2929
once when it's shared by several items.
3030

3131
Using the Files Pipeline
32-
=========================
32+
========================
3333

3434
The typical workflow, when using the :class:`FilesPipeline` goes like
3535
this:
@@ -104,7 +104,7 @@ behaviour, see :ref:`topics-media-pipeline-override`.
104104
.. _topics-media-pipeline-enabling:
105105

106106
Enabling your Media Pipeline
107-
=============================
107+
============================
108108

109109
.. setting:: IMAGES_STORE
110110
.. setting:: FILES_STORE
@@ -175,7 +175,7 @@ Additional features
175175
===================
176176

177177
File expiration
178-
----------------
178+
---------------
179179

180180
.. setting:: IMAGES_EXPIRES
181181
.. setting:: FILES_EXPIRES

docs/topics/request-response.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Request objects
6767

6868
request_with_cookies = Request(url="http://www.example.com",
6969
cookies={'currency': 'USD', 'country': 'UY'})
70+
7071
2. Using a list of dicts::
7172

7273
request_with_cookies = Request(url="http://www.example.com",

docs/topics/settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ Whether to enable DNS in-memory cache.
342342
.. setting:: DNSCACHE_SIZE
343343

344344
DNSCACHE_SIZE
345-
----------------
345+
-------------
346346

347347
Default: ``10000``
348348

@@ -351,7 +351,7 @@ DNS in-memory cache size.
351351
.. setting:: DNS_TIMEOUT
352352

353353
DNS_TIMEOUT
354-
----------------
354+
-----------
355355

356356
Default: ``60``
357357

docs/topics/signals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ request_scheduled
203203
:type spider: :class:`~scrapy.spiders.Spider` object
204204

205205
request_dropped
206-
-----------------
206+
---------------
207207

208208
.. signal:: request_dropped
209209
.. function:: request_dropped(request, spider)

0 commit comments

Comments
 (0)