File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ pub enum Term {
119
119
/// Instance of [`TypeParam::List`] defined by a sequence of concatenated lists of the same type.
120
120
#[ display( "[{}]" , {
121
121
use itertools:: Itertools as _;
122
- _0. iter( ) . map( |t| format!( "... {}" , t ) ) . join( "," )
122
+ _0. iter( ) . map( |t| format!( "... {t}" ) ) . join( "," )
123
123
} ) ]
124
124
ListConcat ( Vec < TypeArg > ) ,
125
125
/// Instance of [`TypeParam::Tuple`] defined by a sequence of elements of varying type.
@@ -131,7 +131,7 @@ pub enum Term {
131
131
/// Instance of [`TypeParam::Tuple`] defined by a sequence of concatenated tuples.
132
132
#[ display( "({})" , {
133
133
use itertools:: Itertools as _;
134
- _0. iter( ) . map( |tuple| format!( "... {}" , tuple ) ) . join( "," )
134
+ _0. iter( ) . map( |tuple| format!( "... {tuple}" ) ) . join( "," )
135
135
} ) ]
136
136
TupleConcat ( Vec < TypeArg > ) ,
137
137
/// Variable (used in type schemes or inside polymorphic functions),
You can’t perform that action at this time.
0 commit comments