cargo clippy
This commit is contained in:
parent
ae00984533
commit
48a7bf5c0a
@ -42,7 +42,7 @@ impl<'a> From<&'a Node<'a, 'a>> for Expect<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Expect<'a> {
|
impl Expect<'_> {
|
||||||
fn tag(self, value: &str) -> Self {
|
fn tag(self, value: &str) -> Self {
|
||||||
assert!(
|
assert!(
|
||||||
self.node.tag_name().name() == value,
|
self.node.tag_name().name() == value,
|
||||||
@ -303,7 +303,7 @@ impl Td {
|
|||||||
|
|
||||||
let mut c = n.children();
|
let mut c = n.children();
|
||||||
|
|
||||||
let Some(next) = c.next() else { return None };
|
let next = c.next()?;
|
||||||
|
|
||||||
let absatz = Absatz::parse(next);
|
let absatz = Absatz::parse(next);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user