Fix rustdoc problems (#33458)

Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
Oriol Brufau 2024-09-14 20:32:41 +02:00 committed by GitHub
parent 97495e45f8
commit ed908f3fd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View file

@ -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,