1773: style: fix comma placement for valid values when using arg_enum r=pksunkara a=mmatyas



Co-authored-by: Mátyás Mustoha <matyas.mustoha@gmail.com>
This commit is contained in:
bors[bot] 2020-04-01 12:30:31 +00:00 committed by GitHub
commit 633ce74ba9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -332,7 +332,7 @@ macro_rules! arg_enum {
$(stringify!($v),)+
];
format!("valid values: {}",
v.join(" ,"))
v.join(", "))
}),
}
}