Skip to content

Commit

Permalink
Additional fix for BitMapBackend
Browse files Browse the repository at this point in the history
Fix misspelled `_phantomdata`.
  • Loading branch information
FarmingtonS9 authored Feb 15, 2025
1 parent 98f9ad3 commit 1ba1a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotters-bitmap/src/bitmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl<'a> BitMapBackend<'a, RGBPixel> {
size: (w, h),
buffer: Buffer::Owned(vec![0; Self::PIXEL_SIZE * (w * h) as usize]),
saved: false,
_data: PhantomData,
_phantomdata: PhantomData,
})
}

Expand Down

0 comments on commit 1ba1a37

Please sign in to comment.