docs: rename link_exprs crate to link_expr (#991)

This commit is contained in:
Myriad-Dreamin 2024-12-12 13:48:04 +08:00 committed by GitHub
parent 57e209f7e0
commit ca3c29fc2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -12,8 +12,8 @@ pub mod color_expr;
pub use color_expr::*;
pub mod doc_highlight;
pub use doc_highlight::*;
pub mod link_exprs;
pub use link_exprs::*;
pub mod link_expr;
pub use link_expr::*;
pub mod stats;
pub use stats::*;
pub mod definition;

View file

@ -1,4 +1,4 @@
//! Analyze color expressions in a source file.
//! Analyze link expressions in a source file.
use std::str::FromStr;