diff options
author | Nicholas Nethercote <nnethercote@mozilla.com> | 2015-02-16 14:02:07 -0800 |
---|---|---|
committer | Nicholas Nethercote <nnethercote@mozilla.com> | 2015-02-16 14:02:07 -0800 |
commit | 65cc9025643882ca79d3d9b5d143d9554da05991 (patch) | |
tree | 480d9cb14ae32302e14b580ba03f94b265ad65c0 /components/layout/traversal.rs | |
parent | edf00a50fc36e2c74a5392100a9d91a84d30a7cf (diff) | |
download | servo-65cc9025643882ca79d3d9b5d143d9554da05991.tar.gz servo-65cc9025643882ca79d3d9b5d143d9554da05991.zip |
Update a comment about STYLE_BLOOM.
Diffstat (limited to 'components/layout/traversal.rs')
-rw-r--r-- | components/layout/traversal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs index 8318b75465d..3ec4aa1bb53 100644 --- a/components/layout/traversal.rs +++ b/components/layout/traversal.rs @@ -55,7 +55,7 @@ thread_local!(static STYLE_BLOOM: RefCell<Option<(Box<BloomFilter>, UnsafeLayout /// Returns the task local bloom filter. /// /// If one does not exist, a new one will be made for you. If it is out of date, -/// it will be thrown out and a new one will be made for you. +/// it will be cleared and reused. fn take_task_local_bloom_filter(parent_node: Option<LayoutNode>, layout_context: &LayoutContext) -> Box<BloomFilter> { STYLE_BLOOM.with(|style_bloom| { |