8000 Fix some typos · angellmethod/python-guide@69277aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 69277aa

Browse files
committed
Fix some typos
1 parent e113bad commit 69277aa

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/intro/learning.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Real Python is a repository of free and in-depth Python tutorials created by a d
3030
Python Basics
3131
~~~~~~~~~~~~~
3232

33-
pythonbasics.org is an introductiory tutorial for beginners. The tutorial includes exercises. It covers the basics and there are also in-depth lessons like object oriented programming and regular expressions.
33+
pythonbasics.org is an introductory tutorial for beginners. The tutorial includes exercises. It covers the basics and there are also in-depth lessons like object oriented programming and regular expressions.
3434

3535
`Python basics <https://pythonbasics.org/>`_
3636

@@ -181,7 +181,7 @@ no previous programming experience.
181181
Computer Science Path on Codecademy
182182
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
183183

184-
A Codeacademy course for the absolute Python beginner. This free and interactive
184+
A Codecademy course for the absolute Python beginner. This free and interactive
185185
course provides and teaches the basics (and beyond) of Python programming while
186186
testing the user's knowledge in between progress.
187187
This course also features a built-in interpreter for receiving instant feedback on your learning.
@@ -218,7 +218,7 @@ Effective Python
218218
~~~~~~~~~~~~~~~~
219219

220220
This book contains 59 specific ways to improve writing Pythonic code. At 227
221-
pages, it is a very brief overview of some of the most common adapations
221+
pages, it is a very brief overview of some of the most common adaptations
222222
programmers need to make to become efficient intermediate level Python
223223
programmers.
224224

docs/scenarios/gui.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Toga
146146
cross platform GUI toolkit. Toga consists of a library of base components with a
147147
shared interface to simplify platform-agnostic GUI development.
148148

149-
Toga is available on mOS, Windows, Linux (GTK), and mobile platforms such as
149+
Toga is available on macOS, Windows, Linux (GTK), and mobile platforms such as
150150
Android and iOS.
151151

152152

docs/scenarios/web.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Pyramid
126126
focus on modularity. It comes with a small number of libraries ("batteries")
127127
built-in, and encourages users to extend its base functionality. A set of
128128
provided cookiecutter templates helps making new project decisions for users.
129-
It powers one of the most important parts of python infrastucture
129+
It powers one of the most important parts of python infrastructure
130130
`PyPI <https://pypi.org/>`_.
131131

132132
Pyramid does not have a large user base, unlike Django and Flask. It's a
@@ -155,7 +155,7 @@ and `Pydantic <https://pydantic-docs.helpmanual.io>`_.
155155

156156
FastAPI takes advantage of standard Python type declarations in function parameters
157157
to declare request parameters and bodies, perform data conversion (serialization,
158-
parsing), data valdiation, and automatic API documentation with **OpenAPI 3**
158+
parsing), data validation, and automatic API documentation with **OpenAPI 3**
159159
(including **JSON Schema**).
160160

161161
It includes tools and utilities for security and authentication (including OAuth2 with JWT
@@ -283,7 +283,7 @@ Heroku is the recommended PaaS for deploying Python web applications today.
283283
Eldarion
284284
--------
285285

286-
`Eldarion <https://eldarion.cloud/>`_ (formely known as Gondor) is a PaaS powered
286+
`Eldarion <https://eldarion.cloud/>`_ (formerly known as Gondor) is a PaaS powered
287287
by Kubernetes, CoreOS, and Docker. They support any WSGI application and have a
288288
guide on deploying `Django projects <https://eldarion-gondor.github.io/docs/how-to/setup-deploy-first-django-project/>`_.
289289

docs/writing/style.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ Never use a list comprehension just for its side effects.
643643

644644
.. code-block:: python
645645
646-
[print(x) for x in seqeunce]
646+
[print(x) for x in sequence]
647647
648648
**Good**:
649649

docs/writing/tests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ the unittest module!
201201
Hypothesis
202202
----------
203203

204-
Hypothesis is a library which lets you write tests that are parametrized by
204+
Hypothesis is a library which lets you write tests that are parameterized by
205205
a source of examples. It then generates simple and comprehensible examples
206206
that make your tests fail, letting you find more bugs with less work.
207207

0 commit comments

Comments
 (0)
0