Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
grst committed Jan 23, 2025
1 parent 8bcc9c1 commit 57d0245
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/cli_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ collaborate on the project.

```toml
[tool.dso]
# whether to compile relative paths declared with `!path` into absolute paths or relative paths (relative to each stage).
# default is `true`
# whether to compile relative paths declared with `!path` into absolute paths or
# relative paths (relative to each stage). Defaults to `true`.
use_relative_path = true
```

Expand All @@ -32,8 +32,8 @@ use_relative_path = true
For project-specific settings that are not intended to be shared across collaborators. This file is stored
at the root of each project. It is not meant to be edited by hand, but will be created and modified by the `dso` CLI as appropriate.

It currently tracks the following properties
It currently tracks the following properties:

| variable | purpose |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `check_ask_pre_commit` | If the user answered "no" to the question if they want to install pre-commit hooks in this project, this will be tracked here |
| variable | purpose |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| `check_ask_pre_commit` | If the user answered "no" to the question if they want to install pre-commit hooks in this project, this will be tracked here. |
2 changes: 1 addition & 1 deletion docs/python_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ from dso import read_params
params = read_params("subfolder/my_stage")
```

By default, DSO compiles paths in configuration files to paths relative to each stage (see [configuration](cli_configuration.md#pyprojecttoml)).
By default, DSO compiles paths in configuration files to paths relative to each stage (see [configuration](cli_configuration.md#project-specific-settings-pyproject-toml)).
From Python, you can use {func}`~dso.stage_here` to resolve paths
relative to the current stage independent of your current working directory, e.g.

Expand Down

0 comments on commit 57d0245

Please sign in to comment.