Fix a typo in a comment introduced in #5021

This commit is contained in:
TÖRÖK Attila 2021-08-22 00:39:24 +02:00 committed by relrelb
parent 8c8be7804d
commit 1674c95487
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ macro_rules! add_field_accessors {
// This intermediate stage is here because I couldn't figure out how to make the nested
// repetitions of $var and the optional $set_ident and $get_ident all exand correctly.
// repetitions of $var and the optional $set_ident and $get_ident all expand correctly.
([single $($var: ident).+, $type_: ty, set => $set_ident: ident]) => {
add_field_accessors!([setter_only $set_ident, $($var).+, $type_],);
};