remove comment

This commit is contained in:
Simon Gardling 2022-05-20 12:48:51 -04:00
parent bb3f3c0414
commit 7a00661e46

View File

@ -3,7 +3,7 @@ use epaint::Color32;
use shadow_rs::shadow; use shadow_rs::shadow;
shadow!(build); 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!( pub const BUILD_INFO: &str = formatc!(
"Commit: {} ({})\nBuild Date: {}\nPackage Version: {}\nRust Channel: {}\nRust Version: {}", "Commit: {} ({})\nBuild Date: {}\nPackage Version: {}\nRust Channel: {}\nRust Version: {}",
&build::SHORT_COMMIT, &build::SHORT_COMMIT,
@ -14,8 +14,6 @@ pub const BUILD_INFO: &str = formatc!(
&build::RUST_VERSION, &build::RUST_VERSION,
); );
// Hard-Coded limits
// Default values // Default values
/// Default minimum X value to display /// Default minimum X value to display
pub const DEFAULT_MIN_X: f64 = -10.0; pub const DEFAULT_MIN_X: f64 = -10.0;