Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/user-guide/example-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Please be aware that all identifiers are effectively made lower-case in SQL, so

To illustrate this behavior, consider the [`capitalized_example.csv`](../../../datafusion/core/tests/data/capitalized_example.csv) file:

## Run a SQL query against data stored in a CSV:
## Run a SQL query against data stored in a CSV (example 2)

```rust
use datafusion::prelude::*;
Expand All @@ -145,7 +145,7 @@ async fn main() -> datafusion::error::Result<()> {
}
```

## Use the DataFrame API to process data stored in a CSV:
## Use the DataFrame API to process data stored in a CSV (example 2)

```rust
use datafusion::prelude::*;
Expand Down