Skip to content

Commit

Permalink
Fix clippy::too_long_first_doc_paragraph lint (#696)
Browse files Browse the repository at this point in the history
This is a newer lint in nightlies.
  • Loading branch information
waywardmonkeys authored Sep 23, 2024
1 parent f7ac4ef commit b2df7b3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vello_encoding/src/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ impl DrawTag {
}
}

/// The first word of each draw info stream entry contains the flags. This is not part of the
/// draw object stream but gets used after the draw objects get reduced on the GPU.
/// 0 represents a non-zero fill. 1 represents an even-odd fill.
/// The first word of each draw info stream entry contains the flags.
///
/// This is not part of the draw object stream but gets used after the draw
/// objects get reduced on the GPU. `0` represents a non-zero fill.
/// `1` represents an even-odd fill.
pub const DRAW_INFO_FLAGS_FILL_RULE_BIT: u32 = 1;

/// Draw object bounding box.
Expand Down

0 comments on commit b2df7b3

Please sign in to comment.