File tree Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -1389,8 +1389,7 @@ Consider a conversion from a regular string literal that prints some HTML:
1389
1389
``` rust
1390
1390
writeln! (
1391
1391
w ,
1392
- " \
1393
- <!-- <link rel=\ " shortcut icon\ " href=\ " {rel}favicon.ico\ " > -->\
1392
+ " <!-- <link rel=\ " shortcut icon\ " href=\ " {rel}favicon.ico\ " > -->\
1394
1393
\ n </head>\
1395
1394
\ n <body>\
1396
1395
\ n <div class=\ " body\ " >\
@@ -1434,20 +1433,19 @@ writeln!(
1434
1433
w ,
1435
1434
dedent! (
1436
1435
r # "
1437
- <!-- <link rel="shortcut icon" href="{}favicon.ico"> -->
1438
- </head>
1439
- <body>
1440
- <div class="body">
1441
- <h1 class="title">
1442
- {}
1443
- <span class="nav">{}</span>
1444
- </h1>
1445
- " #
1446
- ),
1447
- rel ,
1448
- h1 ,
1449
- nav
1450
- )
1436
+ <!-- <link rel="shortcut icon" href="{}favicon.ico"> -->
1437
+ </head>
1438
+ <body>
1439
+ <div class="body">
1440
+ <h1 class="title">
1441
+ {}
1442
+ <span class="nav">{}</span>
1443
+ </h1>
1444
+ " #
1445
+ ),
1446
+ rel ,
1447
+ h1 ,
1448
+ nav
1451
1449
);
1452
1450
```
1453
1451
You can’t perform that action at this time.
0 commit comments