Fix some messages in the tidy script

It's MutJS<T>, not MutJS<JS<T>>.
This commit is contained in:
Anthony Ramine 2017-09-26 00:05:23 +02:00
parent 532dee36c1
commit dafcd821f5
3 changed files with 5 additions and 5 deletions

View file

@ -13,7 +13,7 @@ use script::test::Node;
struct Foo {
bar: DOMRefCell<JS<Node>>
//~^ ERROR Banned type DOMRefCell<JS<T>> detected. Use MutJS<JS<T>> instead
//~^ ERROR Banned type DOMRefCell<JS<T>> detected. Use MutJS<T> instead
}
fn main() {}