diff --git a/packages/eslint-plugin/docs/rules/sort-type-constituents.md b/packages/eslint-plugin/docs/rules/sort-type-constituents.md index 264ef2b52df9..025e31ccad4f 100644 --- a/packages/eslint-plugin/docs/rules/sort-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/sort-type-constituents.md @@ -60,18 +60,18 @@ type T2 = { a: string } & { b: string }; type T3 = [1, 2, 3] & [1, 2, 4]; type T4 = - | any - | string | A | B | number[] | string[] + | any + | string | readonly number[] | readonly string[] | 'a' - | 'b' | 'a' | 'b' + | 'b' | (() => string) | (() => void) | { a: string }