From 475caa46c64a74b169680b2f82925ca8b99ab498 Mon Sep 17 00:00:00 2001 From: Kyle Peeler Date: Sun, 31 Oct 2021 20:18:04 -0700 Subject: [PATCH] docs(eslint-plugin): Fix `consistent-type-definitions` README with correct usage of type (#4039) --- .../eslint-plugin/docs/rules/consistent-type-definitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md index f58a138ec8c..6f91d480e52 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md @@ -59,7 +59,7 @@ interface T { } ``` -Examples of **correct** code with `interface` option. +Examples of **correct** code with `type` option. ```ts type T = { x: number };