Skip to content

Commit 43b5bc6

Browse files
jack-mcivorJack McIvor
andauthored
Fix small typos (#303)
Co-authored-by: Jack McIvor <j.mcivor@draftkings.com>
1 parent 8b4cf22 commit 43b5bc6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/pages/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ list; this tells it what is required.
341341

342342
We use `re-actors/alls-green` to evaluate whether required jobs have passed. You
343343
need to tell it what jobs are required, which you can do without repeating the
344-
needs list by taking the `needs` list and inputing it as json to `with: jobs:`.
344+
needs list by taking the `needs` list and inputting it as json to `with: jobs:`.
345345

346346
This will also support jobs that are allowed to fail (`allowed-failures:`) and
347347
allowed to be skipped (`allowed-skips:`) too.

docs/pages/guides/packaging_classic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ a simple file that includes a line with a simple PEP 440 style version, like
237237
version = attr: package._version.version
238238
```
239239

240-
Setuptools will look in the AST of `_verison.py` for a simple assignment; if
240+
Setuptools will look in the AST of `_version.py` for a simple assignment; if
241241
that works, it will not actually import your package during the setup phase
242242
(which is bad). Older versions of setuptools or complex version files will
243243
import your package; if it is not importable with the pyproject.toml
@@ -441,7 +441,7 @@ to add a `console_scripts` entry point. The form is:
441441
```ini
442442
[options.entry_points]
443443
console_scripts =
444-
cliapp = packakge.__main__:main
444+
cliapp = package.__main__:main
445445
```
446446

447447
The format is command line app name as the key, and the value is the path to the

docs/pages/guides/style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ extend-select = [
235235
"EXE", # flake8-executable
236236
"NPY", # NumPy specific rules
237237
"PD", # pandas-vet
238-
"FURB", # referb
238+
"FURB", # refurb
239239
"PYI", # flake8-pyi
240240
]
241241
ignore = [

docs/pages/guides/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ with render_cookie() as package:
1919

2020
A task runner, like [make][] (fully general), [rake][] (Ruby general),
2121
[invoke][] (Python general), [tox][] (Python packages), or [nox][] (Python
22-
simi-general), is a tool that lets you specify a set of tasks via a common
22+
semi-general), is a tool that lets you specify a set of tasks via a common
2323
interface. These have been discouraged by some community projects in the past,
2424
since they can be a crutch, allowing poor packaging practices to be employed
2525
behind a custom script, and they can hide what is actually happening.

0 commit comments

Comments
 (0)