Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rustdoc: Fix StackingContextFragment error in components/layout_2020/display_list #31625

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/layout_2020/display_list/mod.rs
Expand Up @@ -93,13 +93,13 @@ impl DisplayList {
pub(crate) struct DisplayListBuilder<'a> {
/// The current [ScrollTreeNodeId] for this [DisplayListBuilder]. This
/// allows only passing the builder instead passing the containing
/// [stacking_context::StackingContextFragment] as an argument to display
/// [stacking_context::StackingContextContent::Fragment] as an argument to display
/// list building functions.
current_scroll_node_id: ScrollTreeNodeId,

/// The current [wr::ClipId] for this [DisplayListBuilder]. This allows
/// only passing the builder instead passing the containing
/// [stacking_context::StackingContextFragment] as an argument to display
/// [stacking_context::StackingContextContent::Fragment] as an argument to display
/// list building functions.
current_clip_chain_id: ClipChainId,

Expand Down