diff options
Diffstat (limited to 'graphics/src/geometry/path/builder.rs')
-rw-r--r-- | graphics/src/geometry/path/builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/geometry/path/builder.rs b/graphics/src/geometry/path/builder.rs index 794dd3bc..b0959fbf 100644 --- a/graphics/src/geometry/path/builder.rs +++ b/graphics/src/geometry/path/builder.rs @@ -174,7 +174,7 @@ impl Builder { /// the starting point. #[inline] pub fn close(&mut self) { - self.raw.close() + self.raw.close(); } /// Builds the [`Path`] of this [`Builder`]. |