From 890ac73da3a516210250db297f797c267d1d776d Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Thu, 29 Feb 2024 15:02:03 -0500 Subject: [PATCH] Update docs/source/contributor-guide/index.md --- docs/source/contributor-guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/contributor-guide/index.md b/docs/source/contributor-guide/index.md index 94043cd5212b..58291e5b787f 100644 --- a/docs/source/contributor-guide/index.md +++ b/docs/source/contributor-guide/index.md @@ -157,7 +157,7 @@ DataFusion is written in Rust and it uses a standard rust toolkit: - `cargo test` to test - etc. -Note that running `cargo test` requires signficant memory resources, due to cargo running many tests in parallel by default. If you run into issues with slow tests or system lock ups, you can signficantly reduce the memory required by instead running `cargo test -- --test-threads=1`. For more information see [this issue](https://github.com/apache/arrow-datafusion/issues/5347). +Note that running `cargo test` requires significant memory resources, due to cargo running many tests in parallel by default. If you run into issues with slow tests or system lock ups, you can significantly reduce the memory required by instead running `cargo test -- --test-threads=1`. For more information see [this issue](https://github.com/apache/arrow-datafusion/issues/5347). Testing setup: