diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-09-01 11:58:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 09:58:48 +0000 |
commit | e9281e2eda53f45cf1c902a843158c1dc2494a89 (patch) | |
tree | 6c9d5be99b77a99a448444943c3d018f78f14dfa /components/layout/incremental.rs | |
parent | 6eb3e165787449492ee12f3bd1a6f8529356f7e6 (diff) | |
download | servo-e9281e2eda53f45cf1c902a843158c1dc2494a89.tar.gz servo-e9281e2eda53f45cf1c902a843158c1dc2494a89.zip |
build(deps): bump bitflags from 1.3.2 to 2.3.1 (#30273)
Bumps [bitflags](https://github.com/bitflags/bitflags) from 1.3.2 to 2.3.1.
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitflags/bitflags/compare/1.3.2...2.3.1)
Diffstat (limited to 'components/layout/incremental.rs')
-rw-r--r-- | components/layout/incremental.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/incremental.rs b/components/layout/incremental.rs index 4e313f088bb..a1191695205 100644 --- a/components/layout/incremental.rs +++ b/components/layout/incremental.rs @@ -16,8 +16,8 @@ pub enum RelayoutMode { bitflags! { pub struct SpecialRestyleDamage: u8 { - #[doc = "If this flag is set, we need to reflow the entire document. This is more or less a \ - temporary hack to deal with cases that we don't handle incrementally yet."] + /// If this flag is set, we need to reflow the entire document. This is more or less a + /// temporary hack to deal with cases that we don't handle incrementally yet. const REFLOW_ENTIRE_DOCUMENT = 0x01; } } |