Skip to content

Commit c6027e4

Browse files
authored
docs: fix options.md typos (#1477)
1 parent 9f18d38 commit c6027e4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/options.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ Options have the same names as the environment variable overrides, but are
9292
placed in `[tool.cibuildwheel]` and are lower case, with dashes, following
9393
common [TOML][] practice. Anything placed in subsections `linux`, `windows`,
9494
or `macos` will only affect those platforms. Lists can be used instead of
95-
strings for items that are natually a list. Multiline strings also work just
96-
like in in the environment variables. Environment variables will take
95+
strings for items that are naturally a list. Multiline strings also work just
96+
like in the environment variables. Environment variables will take
9797
precedence if defined.
9898

9999
The example above using environment variables could have been written like this:
@@ -237,7 +237,7 @@ For CPython, the minimally supported macOS version is 10.9; for PyPy 3.7, macOS
237237

238238
Windows arm64 platform support is experimental.
239239

240-
See the [cibuildwheel 1 documentation](https://cibuildwheel.readthedocs.io/en/1.x/) for past end of life versions of Python, and PyPy2.7.
240+
See the [cibuildwheel 1 documentation](https://cibuildwheel.readthedocs.io/en/1.x/) for past end-of-life versions of Python, and PyPy2.7.
241241

242242
#### Examples
243243

@@ -314,7 +314,7 @@ See the [cibuildwheel 1 documentation](https://cibuildwheel.readthedocs.io/en/1.
314314

315315
It is generally recommended to set `CIBW_BUILD` as an environment variable, though `skip`
316316
tends to be useful in a config file; you can statically declare that you don't
317-
support pypy, for example.
317+
support PyPy, for example.
318318

319319
<style>
320320
.build-id-table-marker + table {
@@ -658,7 +658,7 @@ Platform-specific environment variables are also available:<br/>
658658
### `CIBW_ENVIRONMENT_PASS_LINUX` {: #environment-pass}
659659
> Set environment variables on the host to pass-through to the container during the build.
660660
661-
A list of environment variables to pass into the linux container during the build. It has no affect on the other platforms, which can already access all environment variables directly.
661+
A list of environment variables to pass into the linux container during the build. It has no effect on the other platforms, which can already access all environment variables directly.
662662

663663
To specify more than one environment variable, separate the variable names by spaces.
664664

@@ -1216,7 +1216,7 @@ Platform-specific environment variables are also available:<br/>
12161216

12171217
!!! note
12181218

1219-
It's isn't recommended to `cd` to your project directory before running tests,
1219+
It isn't recommended to `cd` to your project directory before running tests,
12201220
because Python might resolve `import yourpackage` relative to the working dir,
12211221
and we want to test the wheel you just built. However, if you're sure that's not
12221222
an issue for you and your workflow requires it, on Windows you should do `cd /d`,
@@ -1393,7 +1393,7 @@ This option is not supported in the overrides section in `pyproject.toml`.
13931393
### `CIBW_BUILD_VERBOSITY` {: #build-verbosity}
13941394
> Increase/decrease the output of pip wheel
13951395
1396-
An number from 1 to 3 to increase the level of verbosity (corresponding to invoking pip with `-v`, `-vv`, and `-vvv`), between -1 and -3 (`-q`, `-qq`, and `-qqq`), or just 0 (default verbosity). These flags are useful while debugging a build when the output of the actual build invoked by `pip wheel` is required. Has no effect on the `build` backend, which produces verbose output by default.
1396+
A number from 1 to 3 to increase the level of verbosity (corresponding to invoking pip with `-v`, `-vv`, and `-vvv`), between -1 and -3 (`-q`, `-qq`, and `-qqq`), or just 0 (default verbosity). These flags are useful while debugging a build when the output of the actual build invoked by `pip wheel` is required. Has no effect on the `build` backend, which produces verbose output by default.
13971397

13981398
Platform-specific environment variables are also available:<br/>
13991399
`CIBW_BUILD_VERBOSITY_MACOS` | `CIBW_BUILD_VERBOSITY_WINDOWS` | `CIBW_BUILD_VERBOSITY_LINUX`

0 commit comments

Comments
 (0)