Closed joeftiger closed 3 years ago
use
const XX: &'static [&'static str]
const XX: &[& str]
'static
into_isometry(&self)
self
These are just some fixes for clippy, as clippy spamed my console when using my fork temporarily :)
Perfect, thanks :D
use
statementconst XX: &'static [&'static str]
toconst XX: &[& str]
as constants have by default a'static
lifetimeinto_isometry(&self)
explicitly where the convention would be to consumeself
These are just some fixes for clippy, as clippy spamed my console when using my fork temporarily :)