From b02f8874c925b13b0cb43d36202cfc1eb9b359cd Mon Sep 17 00:00:00 2001 From: Kevin Schiroo Date: Sun, 12 Feb 2023 06:23:06 -0600 Subject: [PATCH] Fixed broken guide link (#1395) It looks like there is a typo in the csv read documentation causing the existing link on the README.md page to result in a 404. Rather than change the README.md link from `csv_read` to `csv_reader` this PR changes the filename from `csv_reader` to `csv_read` and updates the only other existing reference to the file. This path was taken to make the filename align with the wider pattern within the guide while also addressing the broken link. --- guide/src/SUMMARY.md | 2 +- guide/src/io/{csv_reader.md => csv_read.md} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename guide/src/io/{csv_reader.md => csv_read.md} (100%) diff --git a/guide/src/SUMMARY.md b/guide/src/SUMMARY.md index f79cced198e..c14f4764ac0 100644 --- a/guide/src/SUMMARY.md +++ b/guide/src/SUMMARY.md @@ -9,7 +9,7 @@ - [Foreign interfaces](./ffi.md) - [Extension](./extension.md) - [IO](./io/README.md) - - [Read CSV](./io/csv_reader.md) + - [Read CSV](./io/csv_read.md) - [Write CSV](./io/csv_write.md) - [Read Parquet](./io/parquet_read.md) - [Write Parquet](./io/parquet_write.md) diff --git a/guide/src/io/csv_reader.md b/guide/src/io/csv_read.md similarity index 100% rename from guide/src/io/csv_reader.md rename to guide/src/io/csv_read.md