diff options
| author | Alexander Regueiro <alexreg@me.com> | 2018-10-22 00:45:24 +0100 |
|---|---|---|
| committer | Alexander Regueiro <alexreg@me.com> | 2018-11-03 04:09:34 +0000 |
| commit | 90041d638b1363d3ed89dde8245563bac4c4062c (patch) | |
| tree | e239a81f029a8e2418d06924db986a0794e210df /src/libsyntax/ext | |
| parent | 34792d9f6a831027a9c21ba2439b4a008a5ab1ad (diff) | |
| download | rust-90041d638b1363d3ed89dde8245563bac4c4062c.tar.gz rust-90041d638b1363d3ed89dde8245563bac4c4062c.zip | |
Added support for trait aliases as object types.
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index 41ed90fb94e..a148a649665 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -252,7 +252,7 @@ impl Invocation { pub struct MacroExpander<'a, 'b:'a> { pub cx: &'a mut ExtCtxt<'b>, - monotonic: bool, // c.f. `cx.monotonic_expander()` + monotonic: bool, // cf. `cx.monotonic_expander()` } impl<'a, 'b> MacroExpander<'a, 'b> { |
