From 7855857dde75760a63dbf334a4ff519082e19845 Mon Sep 17 00:00:00 2001 From: Sarah Marshall <33814365+samarsha@users.noreply.github.com> Date: Fri, 19 Jun 2020 11:36:31 -0700 Subject: [PATCH] Fix incorrect reference to running two commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ca5e0ef659..d20ed0093ae 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ To build on other platforms: 2. Run [bootstrap.sh](./bootstrap.sh) * This script prepares and builds the native (C++) full-state simulator. * You only need to run it once. -3. From the command line, run these two commands: +3. From the command line, run: * `dotnet build Simulation.sln` The `Simulation.sln` solution does not include the full-state simulator. To integrate any changes with the rest of the simulation components, you need to manually build it using `make` in the `src\Simulation\Native\build` folder. @@ -72,7 +72,7 @@ All unit tests are part of the `Simulation.sln` solution. To run the tests: * From [Visual Studio](https://docs.microsoft.com/en-us/visualstudio/test/getting-started-with-unit-testing?view=vs-2019#run-unit-tests): * Open Test Explorer by choosing Test > Windows > Test Explorer from the top menu bar. * Run your unit tests by clicking Run All. -* From the command line run: +* From the command line, run: * `dotnet test Simulation.sln`