Skip to content

Commit

Permalink
Update duckdb.md - file arg should be filename
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsmyth authored Nov 5, 2024
1 parent 6477ea2 commit 06cf704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/config-files/connection/duckdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The `duckdb` connection can be used to access a [DuckDB](https://duckdb.org/) da

```hcl
connection "duckdb" "duckdb_connection" {
file = "my_ducks.db"
filename = "my_ducks.db"
}
```

Expand All @@ -36,6 +36,6 @@ The `duckdb` connection type includes an implicit, default connection (`connecti

```hcl
connection "duckcb" "default" {
file = env("DUCKDB_FILENAME")
filename = env("DUCKDB_FILENAME")
}
```

0 comments on commit 06cf704

Please sign in to comment.