From a4ca5e4f294d0aa436b8d03b7f37922ab182916b Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 21 Sep 2024 23:13:07 +0700 Subject: [PATCH] Fix `clippy::too_long_first_doc_paragraph` lint This is a newer lint in nightlies. --- vello_encoding/src/draw.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/vello_encoding/src/draw.rs b/vello_encoding/src/draw.rs index c95edb805..162384263 100644 --- a/vello_encoding/src/draw.rs +++ b/vello_encoding/src/draw.rs @@ -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.