From ce2e9aeabd5e72d6546e014edb3207a27024c59b Mon Sep 17 00:00:00 2001
From: gautham acharya <gautham@neuralink.com>
Date: Mon, 26 Feb 2024 21:35:57 -0800
Subject: [PATCH] Fixing example in CONTRIBUTING.md

---
 CONTRIBUTING.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ee258a3ce8..4472a3640a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,6 +1,6 @@
 # Contributing to delta-rs
 
-Development on this project is mostly driven by volunteer contributors. We welcome new contributors, including not only those who develop new features, but also those who are able to help with documentation and provide detailed bug reports. 
+Development on this project is mostly driven by volunteer contributors. We welcome new contributors, including not only those who develop new features, but also those who are able to help with documentation and provide detailed bug reports.
 
 Please take note of our [code of conduct](CODE_OF_CONDUCT.md).
 
@@ -31,7 +31,7 @@ python -m pytest tests/test_writer.py -s -k "test_with_deltalake_schema"
 - Run some Rust code, e.g. run an example
 ```
 cd crates/deltalake
-cargo run --examples basic_operations
+cargo run --example basic_operations --features="datafusion"
 ```
 
 ## Run the docs locally