Skip to content

Commit d2c7614

Browse files
authored
docs: fix typos (#2061)
* docs: fix typo * docs: fix typos * docs: fix typos
1 parent 66d45de commit d2c7614

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/contributing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Everyone contributing to the cibuildwheel project is expected to follow the [PSF
1717
- `cibuildwheel` should wrap the complexity of wheel building.
1818
- The user interface to `cibuildwheel` is the build script (e.g. `.travis.yml`). Feature additions should not increase the complexity of this script.
1919
- Options should be environment variables (these lend themselves better to YML config files). They should be prefixed with `CIBW_`.
20-
- Options should be generalise to all platforms. If platform-specific options are required, they should be namespaced e.g. `CIBW_TEST_COMMAND_MACOS`
20+
- Options should be generalised to all platforms. If platform-specific options are required, they should be namespaced e.g. `CIBW_TEST_COMMAND_MACOS`
2121

2222
Other notes:
2323

24-
- The platforms are very similar, until they're not. I'd rather have straight-forward code than totally DRY code, so let's keep airy platform abstractions to a minimum.
24+
- The platforms are very similar, until they're not. I'd rather have straightforward code than totally DRY code, so let's keep airy platform abstractions to a minimum.
2525
- I might want to break the options into a shared config file one day, so that config is more easily shared. That has motivated some of the design decisions.
2626

2727
### cibuildwheel's relationship with build errors
@@ -102,7 +102,7 @@ CIBW_PLATFORM=linux pytest test -k test_build_frontend_args
102102

103103
### Linting, docs
104104

105-
Most developer tasks have a nox interface. This allows you to very simply run tasks without worrying about setting up a development environment (as shown below). This is a slower than setting up a development environment and reusing it, but has the (important) benefit of being highly reproducible; an earlier run does not affect a current run, or anything else on your machine.
105+
Most developer tasks have a nox interface. This allows you to very simply run tasks without worrying about setting up a development environment (as shown below). This is slower than setting up a development environment and reusing it, but has the (important) benefit of being highly reproducible; an earlier run does not affect a current run, or anything else on your machine.
106106

107107
You can see a list of sessions by typing `nox -l`; here are a few common ones:
108108

docs/deliver-to-pypi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ This requires setting this GitHub workflow in your project's PyPI settings (for
8686

8787
You should use Dependabot to keep the publish action up to date. In the above
8888
example, the same name (the default, "artifact" is used for all upload-artifact
89-
runs, so we can just download all of the in one step into a common directory.
89+
runs, so we can just download all of them in one step into a common directory.
9090

9191
See
9292
[`examples/github-deploy.yml`](https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml)

docs/faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ myextension = Extension(
133133

134134
### Automatic updates using Dependabot {: #automatic-updates}
135135

136-
Selecting a moving target (like the latest release) is generally a bad idea in CI. If something breaks, you can't tell whether it was your code or an upstream update that caused the breakage, and in a worse-case scenario, it could occur during a release.
136+
Selecting a moving target (like the latest release) is generally a bad idea in CI. If something breaks, you can't tell whether it was your code or an upstream update that caused the breakage, and in a worst-case scenario, it could occur during a release.
137137

138138
There are two suggested methods for keeping cibuildwheel up to date that instead involve scheduled pull requests using GitHub's Dependabot.
139139

@@ -184,7 +184,7 @@ This will also try to update other pins in all requirement files, so be sure you
184184
### Alternatives to cibuildwheel options {: #cibw-options-alternatives}
185185

186186
cibuildwheel provides lots of opportunities to configure the build
187-
environment. However, you might consider adding this build configuration into
187+
environment. However, you might consider adding this build configuration into
188188
the package itself - in general, this is preferred, because users of your
189189
package 'sdist' will also benefit.
190190

0 commit comments

Comments
 (0)