From 3dff7499d764163f455b0352f161ff63c31fc964 Mon Sep 17 00:00:00 2001 From: Autonvilkku Date: Tue, 24 Dec 2024 17:32:54 +0200 Subject: [PATCH] fixed typo --- Cargo.toml | 2 +- src/engine/logging.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7f8e2a6..58c083c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "krait" -version = "0.1.6" +version = "0.1.7" authors = ["Autonvilkku"] description = " A game engine that I'm working on." edition = "2021" diff --git a/src/engine/logging.rs b/src/engine/logging.rs index 85c56ef..e35a16d 100644 --- a/src/engine/logging.rs +++ b/src/engine/logging.rs @@ -3,7 +3,7 @@ use std::panic::Location; /// # LogLevel /// This enum is used to determine the color and priority of the log message. -/// ## ⚠️**Engine shouldn't be used by the user! Addons can use it but sparingly.** +/// ## ⚠️**Engine loglevel shouldn't be used by the user! Addons can use it but sparingly.** pub enum LogLevel { Info, Warning,