X-Git-Url: http://git.scottworley.com/tablify/blobdiff_plain/74bd4cd1e2035284040bbaf894c271423b7a5455..58c0a717743d262025e664eb6ce79ad9cd4c7968:/src/lib.rs?ds=sidebyside diff --git a/src/lib.rs b/src/lib.rs index 357a7ee..f1da5f7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -187,7 +187,7 @@ fn column_order(rows: &[Row]) -> Vec { .collect() } -fn render_instance(instance: &Option) -> HTML { +fn render_one_instance(instance: &Option) -> HTML { match instance { None => HTML::from("✓"), Some(instance) => HTML::escape(instance.as_ref()), @@ -212,7 +212,7 @@ fn render_cell(col: &str, row: &mut Row) -> HTML { instances .unwrap() .iter() - .map(render_instance) + .map(render_one_instance) .map(|html| html.0) // Waiting for slice_concat_trait to stabilize .collect::>() .join(" "),