summaryrefslogtreecommitdiffstats
path: root/src/syntax_mapping.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax_mapping.rs')
-rw-r--r--src/syntax_mapping.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/syntax_mapping.rs b/src/syntax_mapping.rs
index 7c96c513..a149f9bb 100644
--- a/src/syntax_mapping.rs
+++ b/src/syntax_mapping.rs
@@ -89,6 +89,11 @@ impl<'a> SyntaxMapping<'a> {
Lazy::force(matcher);
}
});
+ // Note that this thread is not joined upon completion because there's
+ // no shared resources that need synchronization to be safely dropped.
+ // If we later add code into this thread that requires interesting
+ // resources (e.g. IO), it would be a good idea to store the handle
+ // and join it on drop.
}
pub fn insert(&mut self, from: &str, to: MappingTarget<'a>) -> Result<()> {