diff options
| author | Alexander Regueiro <alexreg@me.com> | 2018-12-07 02:31:02 +0000 |
|---|---|---|
| committer | Alexander Regueiro <alexreg@me.com> | 2018-12-07 23:53:34 +0000 |
| commit | ce9850b953ac3527ddea4b0258718644c97b8667 (patch) | |
| tree | 023804b9a3838fa268405f53a659b799f78a9f47 | |
| parent | f81b8cfd8d8d90a1c843f9660420db203b7ae0f4 (diff) | |
| download | rust-ce9850b953ac3527ddea4b0258718644c97b8667.tar.gz rust-ce9850b953ac3527ddea4b0258718644c97b8667.zip | |
Fixed incorrect reference to issue #23121.
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index e038f4dc677..1a4de59cce6 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -197,7 +197,7 @@ declare_features! ( // rustc internal (active, allow_internal_unsafe, "1.0.0", None, None), - // Allows the use of slice patterns (RFC 23121). + // Allows the use of slice patterns (issue #23121). (active, slice_patterns, "1.0.0", Some(23121), None), // Allows the definition of `const` functions with some advanced features. |
