Fix quote escaping in docs (#7594)

This commit is contained in:
Adam Chalmers
2025-06-24 12:43:43 -05:00
committed by GitHub
parent 1b687a82a6
commit e4941cb524
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ Whether to show the debug panel, which lets you see various states of the app to
##### fixed_size_grid
If true, the grid cells will be fixed-size, where the width is the user's default length unit. If false, the grid's size will scale as the user zooms in and out.
If true, the grid cells will be fixed-size, where the width is your default length unit. If false, the grid will get larger as you zoom out, and smaller as you zoom in.
**Default:** true

View File

@ -94,8 +94,8 @@ pub struct AppSettings {
/// of the app to aid in development.
#[serde(default, skip_serializing_if = "is_default")]
pub show_debug_panel: bool,
/// If true, the grid cells will be fixed-size, where the width is the user's default length unit.
/// If false, the grid's size will scale as the user zooms in and out.
/// If true, the grid cells will be fixed-size, where the width is your default length unit.
/// If false, the grid will get larger as you zoom out, and smaller as you zoom in.
#[serde(default = "make_it_so")]
pub fixed_size_grid: bool,
}