diff options
author | atbrakhi <atbrakhi@igalia.com> | 2024-07-02 16:59:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-02 14:59:46 +0000 |
commit | 044ab3eeabcff408c864ba890d0fc469d30fe482 (patch) | |
tree | 8fca6a2035ec72c9e35105dc2a385cf16ad2b3e4 /components/layout_2020/flow/inline/construct.rs | |
parent | c0105de82b3d6259d4359062b98d6fbfabf1c139 (diff) | |
download | servo-044ab3eeabcff408c864ba890d0fc469d30fe482.tar.gz servo-044ab3eeabcff408c864ba890d0fc469d30fe482.zip |
fix clippy warning (#32667)
Diffstat (limited to 'components/layout_2020/flow/inline/construct.rs')
-rw-r--r-- | components/layout_2020/flow/inline/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_2020/flow/inline/construct.rs b/components/layout_2020/flow/inline/construct.rs index a210e534abe..88b86961564 100644 --- a/components/layout_2020/flow/inline/construct.rs +++ b/components/layout_2020/flow/inline/construct.rs @@ -268,7 +268,7 @@ impl InlineFormattingContextBuilder { for identifier in self.inline_box_stack.iter() { new_builder.start_inline_box( self.inline_boxes - .get(&identifier) + .get(identifier) .borrow() .split_around_block(), ); |