Add link to position field of grid.hline and grid.vline docs (#6670)

This commit is contained in:
Robin 2025-08-07 11:25:30 +02:00 committed by GitHub
parent 89dce86f02
commit 1790a27de8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -498,7 +498,7 @@ pub struct GridFooter {
pub struct GridHLine { pub struct GridHLine {
/// The row above which the horizontal line is placed (zero-indexed). /// The row above which the horizontal line is placed (zero-indexed).
/// If the `position` field is set to `{bottom}`, the line is placed below /// If the `position` field is set to `{bottom}`, the line is placed below
/// the row with the given index instead (see that field's docs for /// the row with the given index instead (see [`grid.hline.position`] for
/// details). /// details).
/// ///
/// Specifying `{auto}` causes the line to be placed at the row below the /// Specifying `{auto}` causes the line to be placed at the row below the
@ -550,7 +550,7 @@ pub struct GridHLine {
pub struct GridVLine { pub struct GridVLine {
/// The column before which the vertical 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 /// 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 /// column with the given index instead (see [`grid.vline.position`] for
/// details). /// details).
/// ///
/// Specifying `{auto}` causes the line to be placed at the column after /// Specifying `{auto}` causes the line to be placed at the column after