From 8d1fa3f77180ba7f3a7cfe933f2d9c82276b6cb0 Mon Sep 17 00:00:00 2001 From: Tobias Jacob Date: Sat, 22 Jul 2023 10:30:29 +0200 Subject: [PATCH] Fixed contributing --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c2d9ba3ac..78038bf99 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,7 +32,7 @@ Usually, you'd have to specify which model you want to load, but there is a [con The same configuration file specifies the [`models/` directory](models/) as the default path. That means, if you want to run another model, you don't have to type the full path. To load the [cuboid model](models/cuboid/), for example, you can do this: ``` sh -cargo run -m cuboid +cargo run -p cuboid ``` ### Running tests @@ -43,10 +43,10 @@ You can run the full suite of unit/integration tests like this: cargo test ``` -During development, it can often be convenient to just run the tests for the crate you're currently working on, as that can be much quicker. You can run only the tests for `fj-kernel`, for example, like this: +During development, it can often be convenient to just run the tests for the crate you're currently working on, as that can be much quicker. You can run only the tests for `fj-core`, for example, like this: ``` sh -cargo test -p fj-kernel +cargo test -p fj-core ``` ### Running a full build