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

fix y-axis hint in config and docs #816

Merged
merged 1 commit into from
Nov 25, 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/docs/config/padding.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ padding-x = 10

## Padding-y

Define y axis padding based on a format `[top, left]`
Define y axis padding based on a format `[top, bottom]`

- Default is `[0, 0]`

```toml
padding-y = [15, 10]
```
```
2 changes: 1 addition & 1 deletion docs/docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ args = ["-w"]
- Fix key bindings when key is uppercased (`alt` or `shift` is inputted along).
- Support to padding-y (ref: [#400](https://github.com/raphamorim/rio/issues/400))

Define y axis padding based on a format `[top, left]`, default is `[0, 0]`.
Define y axis padding based on a format `[top, bottom]`, default is `[0, 0]`.

Example:

Expand Down
2 changes: 1 addition & 1 deletion rio-backend/src/config/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ pub fn default_config_file_content() -> String {

# Padding-y
#
# define y axis padding based on a format [top, left]
# define y axis padding based on a format [top, bottom]
# (default is [0, 0])
#
# Example:
Expand Down
Loading