Skip to content

Commit edce367

Browse files
committed
Fix typo in variadic C function warning
1 parent b6888db commit edce367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
20472047
}
20482048

20492049
if fn_decl.c_variadic {
2050-
gate_feature_post!(&self, c_variadic, span, "C-varaidic functions are unstable");
2050+
gate_feature_post!(&self, c_variadic, span, "C-variadic functions are unstable");
20512051
}
20522052

20532053
visit::walk_fn(self, fn_kind, fn_decl, span);

0 commit comments

Comments
 (0)