Skip to content

Commit

Permalink
address code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm committed Nov 15, 2024
1 parent 315b775 commit d486cf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/user-guide/configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

## Ballista Configuration Settings

Configuring Ballista is like configuring DataFusion. Apart for a few specific Ballista specific configurations all others are the same like DataFusion.
Configuring Ballista is like configuring DataFusion. Apart from a few Ballista specific configurations all others are the same like DataFusion.

_Example: Specifying configuration options when creating a context_

Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ DataFusion is a library for executing queries in-process using the Apache Arrow
model and computational kernels. It is designed to run within a single process, using threads
for parallel query execution.

Ballista is a distributed compute platform to DataFusion workloads.
Ballista is a distributed compute platform for DataFusion workloads.
2 changes: 1 addition & 1 deletion docs/source/user-guide/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ use datafusion::{
#[tokio::main]
async fn main() -> Result<()> {
// creating SessionContext with default settings
let ctx = SessionContext::remote("df://localhost:50050".await?;
let ctx = SessionContext::remote("df://localhost:50050").await?;

let test_data = test_util::examples_test_data();
let filename = format!("{test_data}/alltypes_plain.parquet");
Expand Down

0 comments on commit d486cf3

Please sign in to comment.