From 9ef343593f35ee1be9089d6d40929f5cd112d04b Mon Sep 17 00:00:00 2001 From: Yu Usami Date: Thu, 19 Sep 2024 15:48:37 +0900 Subject: [PATCH] Fix format error in README example The example config in Usage section has a format error. This: ```lua markdown = {'value',} ``` should be ```lua markdown = {'value'}, ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4228504..a247d80a 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Configure the linters you want to run per file type. For example: ```lua require('lint').linters_by_ft = { - markdown = {'vale',} + markdown = {'vale'}, } ```