Skip to content

Commit

Permalink
Fixed CI Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
haricot committed Mar 26, 2024
1 parent 23f60c2 commit cb61f70
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions crates/egui_plot/src/items/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ impl HLine {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -296,7 +297,8 @@ impl VLine {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -444,7 +446,8 @@ impl Line {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -646,7 +649,8 @@ impl Polygon {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -797,7 +801,8 @@ impl Text {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -957,7 +962,8 @@ impl Points {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -1211,7 +1217,8 @@ impl Arrows {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -1380,7 +1387,8 @@ impl PlotImage {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -1627,7 +1635,8 @@ impl BarChart {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down Expand Up @@ -1825,7 +1834,8 @@ impl BoxPlot {
self
}

/// Allowed hovering this item in the plot. Default: `true`.
/// Allowed hovering this item in the plot. Default: `true`.
#[inline]
pub fn allow_hover(mut self, hovering: bool) -> Self {
self.allow_hover = hovering;
self
Expand Down

0 comments on commit cb61f70

Please sign in to comment.