Skip to content

Commit

Permalink
Merge pull request duckdb#2378 from szarnyasg/configuration-link-fixes
Browse files Browse the repository at this point in the history
Fix URLs
  • Loading branch information
szarnyasg authored Feb 29, 2024
2 parents 32d010e + f76798c commit a307a0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api/nodejs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const duckdb = require('duckdb');
const db = new duckdb.Database(':memory:'); // or a file name for a persistent DB
```

All options as described on [Database configuration](../../sql/configuration/overview#configuration-reference) can be (optionally) supplied to the `Database` constructor as second argument. The third argument can be optionally supplied to get feedback on the given options.
All options as described on [Database configuration](../../configuration/overview#configuration-reference) can be (optionally) supplied to the `Database` constructor as second argument. The third argument can be optionally supplied to get feedback on the given options.

```js
const db = new duckdb.Database(':memory:', {
Expand Down
2 changes: 1 addition & 1 deletion docs/sql/keywords_and_identifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ SELECT cosineofpi FROM tbl;
└────────────┘
```

To change this behavior, set the `preserve_identifier_case` [configuration option](configuration/overview#configuration-reference) to `false`.
To change this behavior, set the `preserve_identifier_case` [configuration option](../configuration/overview#configuration-reference) to `false`.

#### Handling Conflicts

Expand Down

0 comments on commit a307a0b

Please sign in to comment.