From e049e321071d8970428333f1c9d29ea8bfe22072 Mon Sep 17 00:00:00 2001 From: Matt Bovel <matthieu@bovel.net> Date: Tue, 3 May 2022 20:45:24 +0200 Subject: [PATCH] Fix typos --- previous-exams/2022-midterm-code/Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/previous-exams/2022-midterm-code/Readme.md b/previous-exams/2022-midterm-code/Readme.md index fd3b3dc..5333c2a 100644 --- a/previous-exams/2022-midterm-code/Readme.md +++ b/previous-exams/2022-midterm-code/Readme.md @@ -19,13 +19,13 @@ sbt test or to run a specific suite: ``` -sbt testOnly midterm.Part1Test +sbt "testOnly midterm.Part1Test" ``` ## Run a main function ``` -sbt runMain midterm.part1 +sbt "runMain midterm.part3" ``` ## Format @@ -37,5 +37,5 @@ sbt scalafmt ## Benchmark ``` -sbt jmh:run -bm ss -i 40 -wi 5 -rf JSON -rff CollectionsBenchmarkResults.json bench.CollectionBenchmark +sbt "jmh:run -bm ss -i 40 -wi 5 -rf JSON -rff CollectionsBenchmarkResults.json bench.CollectionBenchmark" ``` -- GitLab