clippy: Fix warnings in components/layout_2020/flow/text_run.rs (#32393)

* clippy: Fix warnings in `components/layout_2020/flow/text_run.rs`

Signed-off-by: Jujumba <far77578@gmail.com>

* clippy: Fix warnings in `components/layout_2020/flow/text_run.rs`

Signed-off-by: Jujumba <far77578@gmail.com>

---------

Signed-off-by: Jujumba <far77578@gmail.com>
This commit is contained in:
Farid 2024-05-31 08:50:08 +02:00 committed by GitHub
parent 0ccf129be0
commit bea7020258
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -838,7 +838,7 @@ where
};
self.next_character = self.iterator.next();
return Some((character, self.next_character.clone()));
Some((character, self.next_character))
}
}