🚚 Rename "new_static_..!" macros to "static_..!"

This commit is contained in:
Manuel Cillero 2023-11-03 22:59:15 +01:00
parent 088ffe7272
commit 0397036d95
12 changed files with 20 additions and 20 deletions

View file

@ -59,7 +59,7 @@
//! ```rust#ignore
//! use pagetop::prelude::*;
//!
//! new_static_files!(guides);
//! static_files!(guides);
//! ```
//!
//! Also you can get the bundle as a static reference to the generated HashMap resources collection:
@ -67,7 +67,7 @@
//! ```rust#ignore
//! use pagetop::prelude::*;
//!
//! new_static_files!(guides => BUNDLE_GUIDES);
//! static_files!(guides => BUNDLE_GUIDES);
//! ```
//!
//! You can build more than one resources file to compile with your project.