Fix PathStyle::clear_fill() doctest in style.rs (#1791)

This commit is contained in:
Luke Franceschini 2024-06-18 14:29:29 -04:00 committed by GitHub
parent 68a6065f2b
commit 6fd5b76430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -698,11 +698,11 @@ impl PathStyle {
/// # use graphene_core::raster::color::Color; /// # use graphene_core::raster::color::Color;
/// let mut style = PathStyle::new(None, Fill::Solid(Color::RED)); /// let mut style = PathStyle::new(None, Fill::Solid(Color::RED));
/// ///
/// assert!(style.fill().is_some()); /// assert_ne!(*style.fill(), Fill::None);
/// ///
/// style.clear_fill(); /// style.clear_fill();
/// ///
/// assert!(!style.fill().is_some()); /// assert_eq!(*style.fill(), Fill::None);
/// ``` /// ```
pub fn clear_fill(&mut self) { pub fn clear_fill(&mut self) {
self.fill = Fill::None; self.fill = Fill::None;