We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e8155f + 7934bf9 commit 8313ec7Copy full SHA for 8313ec7
tests/small-stack.rs
@@ -1,6 +1,6 @@
1
// Regression test for https://github.com/servo/html5ever/issues/393
2
//
3
-// Create a dynamic atom − causing initialization of the golbal hash map −
+// Create a dynamic atom − causing initialization of the global hash map −
4
// in a thread that has a small stack.
5
6
// This is a separate test program rather than a `#[test] fn` among others
@@ -9,7 +9,7 @@ fn main() {
9
std::thread::Builder::new()
10
.stack_size(50_000)
11
.spawn(|| {
12
- string_cache::DefaultAtom::from("12345678");
+ let _atom = string_cache::DefaultAtom::from("12345678");
13
})
14
.unwrap()
15
.join()
0 commit comments