From 7dad6e24ab9501d7e014f463dfa4d25915e73561 Mon Sep 17 00:00:00 2001 From: Igor Zhirkov Date: Thu, 16 Jan 2025 13:19:34 +0100 Subject: [PATCH] fixup! feat: comparison shows mode, codegen, version --- benchmark_analyzer/src/results/run_description.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmark_analyzer/src/results/run_description.rs b/benchmark_analyzer/src/results/run_description.rs index 827eb526..acda43bd 100644 --- a/benchmark_analyzer/src/results/run_description.rs +++ b/benchmark_analyzer/src/results/run_description.rs @@ -14,17 +14,17 @@ use crate::Run; /// #[derive(Clone, Debug)] pub struct RunDescription<'a> { - /// Metadata of a test. It is common for test runs with different language versions, or compilation options + /// Metadata of a test. It is common for test runs with different language versions, or compilation options. pub test_metadata: &'a TestMetadata, - /// Language version, if applicable + /// Language version, if applicable. pub version: &'a Version, - /// Language version, if applicable + /// Language version, if applicable. pub codegen: &'a Codegen, - /// Compiler options + /// Compiler options. pub mode: &'a Mode, - /// Metadata associated with the compiled binary + /// Metadata associated with the compiled binary. pub executable_metadata: &'a ExecutableMetadata, - /// Measurements + /// Measurements. pub run: &'a Run, }