aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/data.rs')
-rw-r--r--components/style/data.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/data.rs b/components/style/data.rs
index 906848998fb..44920c72c98 100644
--- a/components/style/data.rs
+++ b/components/style/data.rs
@@ -37,13 +37,13 @@ impl PrivateStyleData {
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
pub struct DomParallelInfo {
/// The number of children that still need work done.
- pub children_count: AtomicIsize,
+ pub children_to_process: AtomicIsize,
}
impl DomParallelInfo {
pub fn new() -> DomParallelInfo {
DomParallelInfo {
- children_count: AtomicIsize::new(0),
+ children_to_process: AtomicIsize::new(0),
}
}
}