refactor(log)!: rename ansiconst -> ansi
cargo devel CI / cargo CI (push) Failing after 1m46s Details

idk why it was called that, seems dumb, better break now than later in
case I actually get users
This commit is contained in:
Christoph J. Scherr 2024-07-09 18:33:31 +02:00
parent edb6342b0c
commit 87dc2871d7
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ impl LoggerBuilder {
///
/// Default: true
#[must_use]
pub const fn ansiconst(mut self, ansi: bool) -> Self {
pub const fn ansi(mut self, ansi: bool) -> Self {
self.ansi = ansi;
self
}