chore: clippy warning.
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
James Harton 2024-05-28 19:59:58 +12:00
parent b57e9b200b
commit 5af3994886
Signed by: james
GPG key ID: 90E82DAA13F624F4

View file

@ -331,6 +331,6 @@ impl<'a> IntoIterator for &'a Script {
type IntoIter = std::slice::Iter<'a, ScriptItem>;
fn into_iter(self) -> Self::IntoIter {
self.0.as_slice().into_iter()
self.0.as_slice().iter()
}
}