From 6ba709ccb778d6cc97e921a8dce9cdfb42b7c0ee Mon Sep 17 00:00:00 2001 From: Ze-Zheng Wu Date: Mon, 25 Mar 2024 19:53:14 +0800 Subject: [PATCH] fix(website): a small typo --- website/src/content/docs/reference/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/content/docs/reference/configuration.mdx b/website/src/content/docs/reference/configuration.mdx index 47b9ddff07a4..bf64c66660ab 100644 --- a/website/src/content/docs/reference/configuration.mdx +++ b/website/src/content/docs/reference/configuration.mdx @@ -698,7 +698,7 @@ How big the indentation should be for JSON (and its super languages) files. The type of line ending for JSON (and its super languages) files. - `"lf"`, Line Feed only (`\n`), common on Linux and macOS as well as inside git repos; -- , Carriage Return + Line Feed characters (`\r\n`), common on Windows; +- `"crlf"`, Carriage Return + Line Feed characters (`\r\n`), common on Windows; - `"cr"`, Carriage Return character only (`\r`), used very rarely. > Default: `"lf"`