1
Fork 0

Fix incorrectly spelled "variadic"

This commit is contained in:
Michael Howell 2022-06-11 08:30:46 -07:00
parent 9f6dcceef0
commit 9b31323b8f
14 changed files with 23 additions and 23 deletions

View file

@ -402,8 +402,8 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
gate_feature_post!(self, rustdoc_internals, attr.span, msg);
}
if nested_meta.has_name(sym::tuple_varadic) {
let msg = "`#[doc(tuple_varadic)]` is meant for internal use only";
if nested_meta.has_name(sym::tuple_variadic) {
let msg = "`#[doc(tuple_variadic)]` is meant for internal use only";
gate_feature_post!(self, rustdoc_internals, attr.span, msg);
}
}