Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mbwilding committed Oct 18, 2023
1 parent 062d640 commit 1f5051d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl eframe::App for LambdaBenchmark {
);
});

ui.collapsing("Guide", |ui| {
ui.collapsing("Instructions", |ui| {
ui.label("Pan by dragging, or scroll (+ shift = horizontal).");
ui.label("Box zooming: Right click to zoom in and zoom out using a selection.");
if cfg!(target_arch = "wasm32") {
Expand All @@ -124,7 +124,7 @@ impl eframe::App for LambdaBenchmark {
ui.horizontal(|ui| {
ui.heading("Test case:");
ui.label(
"Write the current iteration value to an S3 key 500 times in succession, then deletes it. The test is executed 10 times, and the average of the 10 runs is displayed.",
"Writes the current iteration value to an S3 key 500 times, then deletes it. It's executed 10 times per runtime/architecture/memory and the average is displayed.",
);

ui.with_layout(egui::Layout::right_to_left(Align::Center), |ui| {
Expand Down

0 comments on commit 1f5051d

Please sign in to comment.