This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new c54f9426b fix path in format command (#6494)
c54f9426b is described below
commit c54f9426b3b7fdbec8c42826853bffd5c0d59439
Author: Ed Seidl <[email protected]>
AuthorDate: Wed Oct 2 03:35:49 2024 -0700
fix path in format command (#6494)
---
CONTRIBUTING.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e0adc18a9..2dea0b2cc 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -164,7 +164,7 @@ Note that currently the above will not check all source
files in the parquet cra
parquet files run the following from the top-level `arrow-rs` directory:
```bash
-cargo fmt -p parquet -- --check --config skip_children=true `find . -name
"*.rs" \! -name format.rs`
+cargo fmt -p parquet -- --check --config skip_children=true `find ./parquet
-name "*.rs" \! -name format.rs`
```
## Breaking Changes