X-Git-Url: http://git.scottworley.com/tablify/blobdiff_plain/f8a3cb9a959eae63f99cc22f51e509351d983e05..493e21a274f99cfcc29559de89cf5ca1c11cc35c:/src/lib.rs diff --git a/src/lib.rs b/src/lib.rs index 23667a1..11ee0c3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -320,7 +320,7 @@ fn render_instances(instances: &[Option], mark: Option<&str>) -> HTML { } HTML( out.into_iter() - .map(|html| html.0) // Waiting for slice_concat_trait to stabilize + .map(|html| html.0) .collect::>() .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::>() .join(", "), )