Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix tildes #1198

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guide/commands/add.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Added packagename @ file:///path/to/packagename as regular dependency

* `--pre`: Include pre-releases when finding a package version

* `--pin <PIN>`: Overrides the pin operator [possible values: `equal`, `tilde-equal``, `greater-than-equal``]
* `--pin <PIN>`: Overrides the pin operator [possible values: `equal`, `tilde-equal`, `greater-than-equal`]

* `--sync`: Runs `sync` automatically even if auto-sync is disabled.

Expand All @@ -83,4 +83,4 @@ Added packagename @ file:///path/to/packagename as regular dependency

* `-q, --quiet`: Turns off all output

* `-h, --help`: Print help (see a summary with '-h')
* `-h, --help`: Print help (see a summary with `-h`)
4 changes: 2 additions & 2 deletions docs/guide/commands/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ By default you will find the artifacts in the `dist` folder.

* `-o, --out <OUT>`: An output directory (defaults to `workspace/dist`)

* `--pyproject <PYPROJECT_TOML>`: Use this `pyproject.toml`` file
* `--pyproject <PYPROJECT_TOML>`: Use this `pyproject.toml` file

* `-c, --clean`: Clean the output directory first

* `-v, --verbose`: Enables verbose diagnostics

* `-q, --quiet`: Turns off all output

* `-h, --help`: Print help
* `-h, --help`: Print help
2 changes: 1 addition & 1 deletion docs/guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ accommodating to portable builds there are various limitations still with this
approach. One of them is that built Python distributions capture some absolute
paths and other build-time configuration. These file paths are then often used
by build tools to invoke C compilers. For instance you might run into a compiler
error like ``error: stdio.h: No such file or directory`` when building C
error like `error: stdio.h: No such file or directory` when building C
extensions. There is no known solution to this problem today other than
[registering a non portable toolchain](toolchains/index.md#registering-toolchains).

Expand Down