Fix incorrect vline.x docs (#6657)

This commit is contained in:
Marcono1234 2025-07-28 11:06:18 +02:00 committed by GitHub
parent a676c78a05
commit a4d4dfb1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -548,7 +548,7 @@ pub struct GridHLine {
/// the grid's `row-gutter` option.
#[elem(name = "vline", title = "Grid Vertical Line")]
pub struct GridVLine {
/// The column before which the horizontal line is placed (zero-indexed).
/// The column before which the vertical line is placed (zero-indexed).
/// If the `position` field is set to `{end}`, the line is placed after the
/// column with the given index instead (see that field's docs for
/// details).

View File

@ -528,7 +528,7 @@ pub struct TableHLine {
/// part of all your tables' designs.
#[elem(name = "vline", title = "Table Vertical Line")]
pub struct TableVLine {
/// The column before which the horizontal line is placed (zero-indexed).
/// The column before which the vertical line is placed (zero-indexed).
/// Functions identically to the `x` field in [`grid.vline`]($grid.vline).
pub x: Smart<usize>,