From 65cc9025643882ca79d3d9b5d143d9554da05991 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Mon, 16 Feb 2015 14:02:07 -0800 Subject: [PATCH] Update a comment about STYLE_BLOOM. --- components/layout/traversal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, 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, layout_context: &LayoutContext) -> Box { STYLE_BLOOM.with(|style_bloom| {