@@ -2218,10 +2218,12 @@ fn check_type_argument_count(tcx: TyCtxt, span: Span, supplied: usize,
2218
2218
} else {
2219
2219
"expected"
2220
2220
} ;
2221
+ let arguments_plural = if required == 1 { "" } else { "s" } ;
2221
2222
struct_span_err ! ( tcx. sess, span, E0243 , "wrong number of type arguments" )
2222
2223
. span_label (
2223
2224
span,
2224
- & format ! ( "{} {} type arguments, found {}" , expected, required, supplied)
2225
+ & format ! ( "{} {} type argument{}, found {}" ,
2226
+ expected, required, arguments_plural, supplied)
2225
2227
)
2226
2228
. emit ( ) ;
2227
2229
} else if supplied > accepted {
@@ -2232,11 +2234,12 @@ fn check_type_argument_count(tcx: TyCtxt, span: Span, supplied: usize,
2232
2234
} else {
2233
2235
format ! ( "expected {}" , accepted)
2234
2236
} ;
2237
+ let arguments_plural = if accepted == 1 { "" } else { "s" } ;
2235
2238
2236
2239
struct_span_err ! ( tcx. sess, span, E0244 , "wrong number of type arguments" )
2237
2240
. span_label (
2238
2241
span,
2239
- & format ! ( "{} type arguments , found {}" , expected, supplied)
2242
+ & format ! ( "{} type argument{} , found {}" , expected, arguments_plural , supplied)
2240
2243
)
2241
2244
. emit ( ) ;
2242
2245
}
0 commit comments