diff options
| author | bors <bors@rust-lang.org> | 2015-04-25 03:43:31 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-25 03:43:31 +0000 |
| commit | a40261ac91dd80b21830cc94de6132744e0c5078 (patch) | |
| tree | 023666901a4f040367389290d46a22c97ae7d8ce /src/libsyntax | |
| parent | f9e53c7f2c8285f3422ac7ac091349ce572c4baa (diff) | |
| parent | 23b1d172a8245f810f179d939488325fff005158 (diff) | |
| download | rust-a40261ac91dd80b21830cc94de6132744e0c5078.tar.gz rust-a40261ac91dd80b21830cc94de6132744e0c5078.zip | |
Auto merge of #24798 - steveklabnik:rollup, r=steveklabnik
- Successful merges: #24662, #24722, #24725, #24729, #24736, #24749, #24751, #24766, #24769, #24772, #24775, #24790 - Failed merges: #24760
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index d0975c76e93..fa95f667c15 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -394,7 +394,7 @@ impl<'a> Context<'a> { are reserved for internal compiler diagnostics"); } else if name.starts_with("derive_") { self.gate_feature("custom_derive", attr.span, - "attributes of the form `#[derive_*]` are reserved + "attributes of the form `#[derive_*]` are reserved \ for the compiler"); } else { self.gate_feature("custom_attribute", attr.span, @@ -620,7 +620,7 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> { pattern.span, "multiple-element slice matches anywhere \ but at the end of a slice (e.g. \ - `[0, ..xs, 0]` are experimental") + `[0, ..xs, 0]`) are experimental") } ast::PatVec(..) => { self.gate_feature("slice_patterns", |
