diff options
| author | Michael Lamparski <diagonaldevice@gmail.com> | 2018-05-03 06:49:30 -0400 |
|---|---|---|
| committer | Michael Lamparski <diagonaldevice@gmail.com> | 2018-05-03 06:49:30 -0400 |
| commit | 8e38d02d986a5fa5ef51b6995058d7327aa0da4b (patch) | |
| tree | 8a8da07493dd85506e79c81be714cf8860311ab1 /src/libstd | |
| parent | fbc57a7c7a9c01db5881aa77148bbe5fd7a066fd (diff) | |
| download | rust-8e38d02d986a5fa5ef51b6995058d7327aa0da4b.tar.gz rust-8e38d02d986a5fa5ef51b6995058d7327aa0da4b.zip | |
update concat_idents doc stubs
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/macros.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 6902ec82047..d1274a40900 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -450,8 +450,8 @@ pub mod builtin { #[unstable(feature = "concat_idents_macro", issue = "29599")] #[macro_export] macro_rules! concat_idents { - ($($e:ident),*) => ({ /* compiler built-in */ }); - ($($e:ident,)*) => ({ /* compiler built-in */ }); + ($($e:ident),+) => ({ /* compiler built-in */ }); + ($($e:ident,)+) => ({ /* compiler built-in */ }); } /// Concatenates literals into a static string slice. |
