diff options
author | Oriol Brufau <obrufau@igalia.com> | 2024-09-14 20:32:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 18:32:41 +0000 |
commit | ed908f3fd418f51f27dd0e063f1851863018354c (patch) | |
tree | 604bd6b4e280aa777746ef8d32a94dbe20769691 /components/script/dom/htmlcollection.rs | |
parent | 97495e45f8a19f8772cca4035d6521762f94640d (diff) | |
download | servo-ed908f3fd418f51f27dd0e063f1851863018354c.tar.gz servo-ed908f3fd418f51f27dd0e063f1851863018354c.zip |
Fix rustdoc problems (#33458)
Signed-off-by: Oriol Brufau <obrufau@igalia.com>
Diffstat (limited to 'components/script/dom/htmlcollection.rs')
-rw-r--r-- | components/script/dom/htmlcollection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlcollection.rs b/components/script/dom/htmlcollection.rs index f48715f158a..b2a135ace00 100644 --- a/components/script/dom/htmlcollection.rs +++ b/components/script/dom/htmlcollection.rs @@ -26,8 +26,8 @@ pub trait CollectionFilter: JSTraceable { } /// An optional `u32`, using `u32::MAX` to represent None. It would be nicer -/// just to use `Option<u32>`` for this, but that would produce word alignment -/// issues since `Option<u32>`` uses 33 bits. +/// just to use `Option<u32>` for this, but that would produce word alignment +/// issues since `Option<u32>` uses 33 bits. #[derive(Clone, Copy, JSTraceable, MallocSizeOf)] struct OptionU32 { bits: u32, |