From 0fd004e8669b96146be25c18322869aa75894633 Mon Sep 17 00:00:00 2001 From: Maxim Zhiburt Date: Sun, 4 Aug 2024 08:27:29 +0300 Subject: [PATCH] Fix cargo clippy --- table_to_html/examples/html.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/table_to_html/examples/html.rs b/table_to_html/examples/html.rs index d1a0078f..73c6790e 100644 --- a/table_to_html/examples/html.rs +++ b/table_to_html/examples/html.rs @@ -1,14 +1,14 @@ //! This example demonstrates using [`HtmlTable`] to easily transform a multi-dimensional array //! into web-friendly [html](https://developer.mozilla.org/en-US/docs/Web/HTML). //! -//! * Note how [`HtmlTable::set_border()`] is used to customize the output markup. +//! Note how [`HtmlTable::set_border()`] is used to customize the output markup. //! These changes are implemented through a prepended [style](https://developer.mozilla.org/en-US/docs/Web/css) //! section above the opening table tag. -//! * Customization options include: -//! * Border -//! * Alignment -//! * Column and Row span -//! * Margin and Padding +//! Customization options include: +//! Border +//! Alignment +//! Column and Row span +//! Margin and Padding use table_to_html::HtmlTable;