From fbbcdd4f051b9d1c390140c594eef97143c4e194 Mon Sep 17 00:00:00 2001 From: Isabel Duan Date: Wed, 30 Oct 2024 15:44:19 -0700 Subject: [PATCH] fix wrong description, add examples --- extensions/typescript-language-features/package.nls.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/typescript-language-features/package.nls.json b/extensions/typescript-language-features/package.nls.json index 7da31b7d186..834c0fac7c3 100644 --- a/extensions/typescript-language-features/package.nls.json +++ b/extensions/typescript-language-features/package.nls.json @@ -198,9 +198,9 @@ "typescript.preferences.organizeImports.caseSensitivity.sensitive": "Sort imports case-sensitively.", "typescript.preferences.organizeImports.typeOrder": "Specify how type-only named imports should be sorted.", "typescript.preferences.organizeImports.typeOrder.auto": "Detect where type-only named imports should be sorted.", - "typescript.preferences.organizeImports.typeOrder.last": "Type only named imports are sorted to the end of the import list.", - "typescript.preferences.organizeImports.typeOrder.inline": "Named imports are sorted by name only.", - "typescript.preferences.organizeImports.typeOrder.first": "Type only named imports are sorted to the end of the import list.", + "typescript.preferences.organizeImports.typeOrder.last": "Type only named imports are sorted to the end of the import list. E.g. `import { B, Z, type A, type Y } from 'module';`", + "typescript.preferences.organizeImports.typeOrder.inline": "Named imports are sorted by name only. E.g. `import { type A, B, type Y, Z } from 'module';`", + "typescript.preferences.organizeImports.typeOrder.first": "Type only named imports are sorted to the beginning of the import list. E.g. `import { type A, type Y, B, Z } from 'module';`", "typescript.preferences.organizeImports.unicodeCollation": "Specify whether to sort imports using Unicode or Ordinal collation.", "typescript.preferences.organizeImports.unicodeCollation.ordinal": "Sort imports using the numeric value of each code point.", "typescript.preferences.organizeImports.unicodeCollation.unicode": "Sort imports using the Unicode code collation.",