From aa664a95a1f3706d2dcb2855f46c324f5c1c812e Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Wed, 8 Oct 2025 02:00:54 -0400 Subject: [PATCH] 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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db2dc30..34bbf43 100644 --- a/README.md +++ b/README.md @@ -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, };