From 28fd38e6b8998fe51fe723746df697c7106e9a01 Mon Sep 17 00:00:00 2001 From: xfy Date: Wed, 17 Jun 2026 13:11:38 +0800 Subject: [PATCH] docs(plan): remove stale references to removed comment APIs --- docs/superpowers/plans/2026-06-11-comment-localstorage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/superpowers/plans/2026-06-11-comment-localstorage.md b/docs/superpowers/plans/2026-06-11-comment-localstorage.md index 1f9e90b..1bf462b 100644 --- a/docs/superpowers/plans/2026-06-11-comment-localstorage.md +++ b/docs/superpowers/plans/2026-06-11-comment-localstorage.md @@ -180,9 +180,9 @@ mod check; pub use types::*; pub use create::create_comment; -pub use read::{get_comments, get_comment_count}; +pub use read::get_comments; pub use update::{approve_comment, spam_comment, trash_comment, batch_update_comment_status}; -pub use list::{get_pending_comments, get_pending_count, get_all_comments}; +pub use list::{get_pending_count, get_all_comments}; pub use check::check_pending_status; #[cfg(feature = "server")]