commit | fd6bf5c8a7669a495b4e7c6bd0487e18a1a3ae1c | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Nov 12 09:41:14 2017 -0800 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Nov 12 10:34:57 2017 -0800 |
tree | 4dcab25e70f97aa591ef6852c3544797e1db9400 | |
parent | 88e1feb33047a564d2698e52aff77595bc686ee0 [diff] [blame] |
Rename Ty -> Type Rust source code does not abbreviate type -> ty (the way it abbreviates impl and mod, for example). This commit updates the naming in syn to reflect that.
diff --git a/tests/test_precedence.rs b/tests/test_precedence.rs index 87dada8..19dc3ad 100644 --- a/tests/test_precedence.rs +++ b/tests/test_precedence.rs
@@ -345,7 +345,7 @@ pat } - fn fold_ty(&mut self, ty: Ty) -> Ty { + fn fold_type(&mut self, ty: Type) -> Type { ty } }