]> git.scottworley.com Git - tablify/blobdiff - src/lib.rs
slice_concat_trait will never be stabilized. :(
[tablify] / src / lib.rs
index 23667a1be543bd141b3d179e945ee477a33f26d7..11ee0c38912872503178c90e3efab5db0cf98e3a 100644 (file)
@@ -320,7 +320,7 @@ fn render_instances(instances: &[Option<String>], mark: Option<&str>) -> HTML {
     }
     HTML(
         out.into_iter()
-            .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
+            .map(|html| html.0)
             .collect::<Vec<_>>()
             .join(" "),
     )
@@ -380,7 +380,7 @@ fn render_all_leftovers(config: &Config, row: &Row) -> HTML {
                     row.entries.get(notcol).expect("Key vanished?!"),
                 )
             })
-            .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
+            .map(|html| html.0)
             .collect::<Vec<_>>()
             .join(", "),
     )