mirror of https://github.com/scrapy/scrapy.git
Fix small documentation wording issues (#7480)
This commit is contained in:
parent
b9c2240040
commit
a9324fbf76
|
|
@ -12,13 +12,13 @@ Key takeaways:
|
|||
> Note: What follows is based on
|
||||
> https://raw.githubusercontent.com/jackyzha0/quartz/acfaa472253a432d350e9b6904c0cde14f8c487f/.github/pull_request_template.md
|
||||
|
||||
We more than welcome contributions, and are OK with the use of LLMs tools. How
|
||||
We more than welcome contributions, and are OK with the use of LLM tools. How
|
||||
you use those tools depends on whether or not they make you more productive.
|
||||
|
||||
But one thing that bugs us a lot are PRs that are made entirely with these
|
||||
tools, without any revision or any effort trying to refine their output
|
||||
whatsoever. This is just pure laziness, and unacceptable. Doing so will just
|
||||
end up wasting everyone time (ours and yours).
|
||||
end up wasting everyone's time (ours and yours).
|
||||
|
||||
So to be the most productive for all parties, we would encourage any
|
||||
contributors to, at the very least, pay attention to what the model is doing,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ from sphinx.application import Sphinx
|
|||
|
||||
def maybe_skip_member(app: Sphinx, what, name: str, obj, skip: bool, options) -> bool:
|
||||
if not skip:
|
||||
# autodocs was generating a text "alias of" for the following members
|
||||
# autodoc was generating the text "alias of" for the following members
|
||||
return name in {"default_item_class", "default_selector_class"}
|
||||
return skip
|
||||
|
||||
|
|
|
|||
|
|
@ -46,12 +46,12 @@ the console you need to type::
|
|||
Password:
|
||||
>>>
|
||||
|
||||
By default Username is ``scrapy`` and Password is autogenerated. The
|
||||
autogenerated Password can be seen on Scrapy logs like the example below::
|
||||
By default, the username is ``scrapy`` and the password is autogenerated. The
|
||||
autogenerated password can be seen on Scrapy logs like the example below::
|
||||
|
||||
2018-10-16 14:35:21 [scrapy.extensions.telnet] INFO: Telnet Password: 16f92501e8a59326
|
||||
|
||||
Default Username and Password can be overridden by the settings
|
||||
The default username and password can be overridden by the settings
|
||||
:setting:`TELNETCONSOLE_USERNAME` and :setting:`TELNETCONSOLE_PASSWORD`.
|
||||
|
||||
.. warning::
|
||||
|
|
|
|||
Loading…
Reference in New Issue