From cf80b180a8e298e42ce48ba37a6166e9de7f10ef Mon Sep 17 00:00:00 2001 From: Liang-Chi Hsieh Date: Fri, 6 Sep 2024 14:07:53 -0700 Subject: [PATCH] doc: Update native code path in development --- docs/source/contributor-guide/development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/contributor-guide/development.md b/docs/source/contributor-guide/development.md index 4cf7042f0..de0c5705f 100644 --- a/docs/source/contributor-guide/development.md +++ b/docs/source/contributor-guide/development.md @@ -24,7 +24,7 @@ under the License. ``` ├── common <- common Java/Scala code ├── conf <- configuration files -├── core <- core native code, in Rust +├── native <- native code, in Rust ├── spark <- Spark integration ``` @@ -71,7 +71,7 @@ After that you can open the project in CLion. The IDE should automatically detec ### Running Tests in IDEA Like other Maven projects, you can run tests in IntelliJ IDEA by right-clicking on the test class or test method and selecting "Run" or "Debug". -However if the tests is related to the native side. Please make sure to run `make core` or `cd core && cargo build` before running the tests in IDEA. +However if the tests is related to the native side. Please make sure to run `make core` or `cd native && cargo build` before running the tests in IDEA. ### Running Tests from command line