File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ fn fmt_1<D: fmt::Debug + fmt::Display>(
139139 a : & D ,
140140 is_debug : bool ,
141141) -> fmt:: Result {
142- f. write_str ( & name) ?;
142+ f. write_str ( name) ?;
143143 conditional_fmt ( f, a, is_debug) ?;
144144 f. write_str ( ")" )
145145}
@@ -150,7 +150,7 @@ fn fmt_2<D: fmt::Debug + fmt::Display>(
150150 b : & D ,
151151 is_debug : bool ,
152152) -> fmt:: Result {
153- f. write_str ( & name) ?;
153+ f. write_str ( name) ?;
154154 conditional_fmt ( f, a, is_debug) ?;
155155 f. write_str ( "," ) ?;
156156 conditional_fmt ( f, b, is_debug) ?;
@@ -163,7 +163,7 @@ fn fmt_n<D: fmt::Debug + fmt::Display>(
163163 list : & [ D ] ,
164164 is_debug : bool ,
165165) -> fmt:: Result {
166- f. write_str ( & name) ?;
166+ f. write_str ( name) ?;
167167 write ! ( f, "{}" , first) ?;
168168 for el in list {
169169 f. write_str ( "," ) ?;
You can’t perform that action at this time.
0 commit comments