FIX: Lint issues

This commit is contained in:
Nicolás Hatcher
2024-02-17 17:54:44 +01:00
parent c4aef8fec1
commit 36e1a73ffa

View File

@@ -1,22 +1,22 @@
//! # IronCalc - Core API documentation //! # 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 //! build a UI based on the engine or just use the library in a Rust program
//! //!
//! ## Usage //! ## Usage
//! //!
//! Add the dependency in `Cargo.toml`: //! Add the dependency in `Cargo.toml`:
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! ironcalc = { git = "https://github.com/ironcalc/IronCalc", version = "0.1.0"} //! ironcalc = { git = "https://github.com/ironcalc/IronCalc", version = "0.1.0"}
//! ``` //! ```
//! //!
//! <small> until version 0.5.0 you should use the git dependencies as stated </small> //! <small> until version 0.5.0 you should use the git dependencies as stated </small>
//! //!
//! A simple example: //! A simple example:
//! //!
//! //!
//! ```rust //! ```rust
//! use ironcalc::{ //! use ironcalc::{
//! base::{expressions::utils::number_to_column, model::Model}, //! base::{expressions::utils::number_to_column, model::Model},
@@ -47,14 +47,13 @@
//! Ok(()) //! Ok(())
//! } //! }
//! ``` //! ```
//! //!
//! You can then just: //! You can then just:
//! //!
//! ```bash //! ```bash
//! cargo run //! cargo run
//! ``` //! ```
#![doc( #![doc(
html_logo_url = "https://raw.githubusercontent.com/ironcalc/ironcalc/main/assets/logo.png", 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" html_favicon_url = "https://raw.githubusercontent.com/ironcalc/ironcalc/main/assets/favicon.ico"