diff --git a/src/consts.rs b/src/consts.rs index 14fa143..41318e0 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -3,7 +3,7 @@ use epaint::Color32; use shadow_rs::shadow; shadow!(build); -// Constant string that has a string containing information about the build. +/// Constant string that has a string containing information about the build. pub const BUILD_INFO: &str = formatc!( "Commit: {} ({})\nBuild Date: {}\nPackage Version: {}\nRust Channel: {}\nRust Version: {}", &build::SHORT_COMMIT, @@ -14,8 +14,6 @@ pub const BUILD_INFO: &str = formatc!( &build::RUST_VERSION, ); -// Hard-Coded limits - // Default values /// Default minimum X value to display pub const DEFAULT_MIN_X: f64 = -10.0;