From 258a0517aa05512cf86cba0efefbb6549f26ea1a Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Sat, 18 Oct 2025 07:40:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(lib):=20comment=20out=20sav?= =?UTF-8?q?e=20and=20load=20rules=20examples?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - comment out save and load rules examples - these examples are not working and should be fixed later --- docs/lib/lib.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/lib/lib.md b/docs/lib/lib.md index f46f341..192bd23 100644 --- a/docs/lib/lib.md +++ b/docs/lib/lib.md @@ -122,10 +122,10 @@ rules.add_rule( ); // Save rules to file -rules.save()?; +// rules.save()?; // Load existing rules -let loaded_rules = Rules::load()?; +// let loaded_rules = Rules::load()?; # Ok(()) # } ```