From 36e1a73ffa8c64dcc95d96efaeb2ecb6b0e17ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Sat, 17 Feb 2024 17:54:44 +0100 Subject: [PATCH] FIX: Lint issues --- xlsx/src/lib.rs | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/xlsx/src/lib.rs b/xlsx/src/lib.rs index a4f9db0..b6486c0 100644 --- a/xlsx/src/lib.rs +++ b/xlsx/src/lib.rs @@ -1,22 +1,22 @@ //! # IronCalc - Core API documentation -//! -//! This technical API documentation in aimed at developers who want to develop bindings for a different language, +//! +//! This technical API documentation in aimed at developers who want to develop bindings for a different language, //! build a UI based on the engine or just use the library in a Rust program -//! +//! //! ## Usage -//! +//! //! Add the dependency in `Cargo.toml`: -//! +//! //! ```toml //! [dependencies] //! ironcalc = { git = "https://github.com/ironcalc/IronCalc", version = "0.1.0"} //! ``` -//! +//! //! until version 0.5.0 you should use the git dependencies as stated -//! +//! //! A simple example: -//! -//! +//! +//! //! ```rust //! use ironcalc::{ //! base::{expressions::utils::number_to_column, model::Model}, @@ -47,14 +47,13 @@ //! Ok(()) //! } //! ``` -//! +//! //! You can then just: -//! +//! //! ```bash //! cargo run //! ``` - #![doc( html_logo_url = "https://raw.githubusercontent.com/ironcalc/ironcalc/main/assets/logo.png", html_favicon_url = "https://raw.githubusercontent.com/ironcalc/ironcalc/main/assets/favicon.ico"