diff --git a/docs/source/user-guide/deployment/quick-start.md b/docs/source/user-guide/deployment/quick-start.md index cbb78476f..d94de0475 100644 --- a/docs/source/user-guide/deployment/quick-start.md +++ b/docs/source/user-guide/deployment/quick-start.md @@ -61,7 +61,7 @@ The examples can be run using the `cargo run --bin` syntax. Open a new terminal ```bash cd examples -cargo run --release --bin sql +cargo run --release --example remote-sql ``` ### Source code for distributed SQL example @@ -108,7 +108,7 @@ async fn main() -> Result<()> { ```bash cd examples -cargo run --release --bin dataframe +cargo run --release --example remote-dataframe ``` ### Source code for distributed DataFrame example diff --git a/examples/README.md b/examples/README.md index 60e43e731..4eaaac1e2 100644 --- a/examples/README.md +++ b/examples/README.md @@ -90,7 +90,7 @@ The examples can be run using the `cargo run --bin` syntax. ## Distributed SQL Example ```bash -cargo run --release --bin sql +cargo run --release --example remote-sql ``` ### Source code for distributed SQL example @@ -136,7 +136,7 @@ async fn main() -> Result<()> { ## Distributed DataFrame Example ```bash -cargo run --release --bin dataframe +cargo run --release --example remote-dataframe ``` ### Source code for distributed DataFrame example