Skip to content

Commit

Permalink
Fix URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Feb 29, 2024
1 parent 32d010e commit f76798c
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 f76798c

Please sign in to comment.