Skip to content

Commit

Permalink
fixed indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
Michu1596 committed Jan 22, 2025
1 parent 128a956 commit 549fd82
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/source/queries/displaying-results.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ To display query results, create a `RowsDisplayer` instance and configure its di

```rust
let result: QueryRowsResult = session
.query_unpaged("SELECT * FROM examples_ks.basic1", &[])
.await?
.into_rows_result()?;

let displayer = result.rows_displayer();
println!("{}", displayer);
.query_unpaged("SELECT * FROM examples_ks.basic1", &[])
.await?
.into_rows_result()?;
let displayer = result.rows_displayer();
println!("{}", displayer);
```

## Display Settings
Expand Down

0 comments on commit 549fd82

Please sign in to comment.