Fix example in README to reference Model correctly.

Since https://github.com/ironcalc/IronCalc/pull/27, using
`base::model::Model` complains about `model` being a private modulde,
and `base::Model` should be used instead.
This commit is contained in:
Dmitry S
2025-10-08 02:00:54 -04:00
committed by Nicolás Hatcher Andrés
parent c1aa743763
commit aa664a95a1

View File

@@ -84,7 +84,7 @@ And then use this code in `main.rs`:
```rust
use ironcalc::{
base::{expressions::utils::number_to_column, model::Model},
base::{expressions::utils::number_to_column, Model},
export::save_to_xlsx,
};