Skip to content

Commit 6eea4ad

Browse files
NeutroniSiegeLord
authored andcommitted
lifetime annotation simplification
1 parent 0cffd1f commit 6eea4ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gnuplot/src/color.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ impl<'l> From<&'l str> for ColorType<String>
297297
}
298298
}
299299

300-
impl<'l> From<String> for ColorType<String>
300+
impl From<String> for ColorType<String>
301301
{
302302
/// Converts `String` into [RGBString]
303303
fn from(value: String) -> Self

gnuplot/src/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ pub enum Tick<T, S>
322322
Minor(T),
323323
}
324324

325-
impl<'l, T: Clone, S: ToString> OneWayOwned for Tick<T, S>
325+
impl<T: Clone, S: ToString> OneWayOwned for Tick<T, S>
326326
{
327327
type Output = Tick<T, String>;
328328
fn to_one_way_owned(&self) -> Self::Output

0 commit comments

Comments
 (0)