Rename filters/builtin.rs into filters/core.rs

This commit is contained in:
Guillaume Gomez 2025-06-11 19:44:09 +02:00 committed by René Kijewski
parent 00b640c93b
commit 0b7858d78d
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#[cfg(feature = "alloc")]
mod alloc;
mod builtin;
mod core;
mod escape;
mod humansize;
mod indent;
@ -28,7 +28,7 @@ pub use self::alloc::{
capitalize, fmt, format, linebreaks, linebreaksbr, lower, lowercase, paragraphbreaks, title,
titlecase, trim, upper, uppercase, wordcount,
};
pub use self::builtin::{PluralizeCount, center, join, pluralize, reject, reject_with, truncate};
pub use self::core::{PluralizeCount, center, join, pluralize, reject, reject_with, truncate};
pub use self::escape::{
AutoEscape, AutoEscaper, Escaper, Html, HtmlSafe, HtmlSafeOutput, MaybeSafe, Safe, Text,
Unsafe, Writable, WriteWritable, e, escape, safe,