diff --git a/docs/api/nodejs/overview.md b/docs/api/nodejs/overview.md index b4b842eeab7..954f4a66a3e 100644 --- a/docs/api/nodejs/overview.md +++ b/docs/api/nodejs/overview.md @@ -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:', { diff --git a/docs/sql/keywords_and_identifiers.md b/docs/sql/keywords_and_identifiers.md index c8f64e08656..b84a8c603bb 100644 --- a/docs/sql/keywords_and_identifiers.md +++ b/docs/sql/keywords_and_identifiers.md @@ -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