Skip to content

Commit

Permalink
Merge pull request #69121 from sebastiandedeyne/patch-1
Browse files Browse the repository at this point in the history
Fix types in Emmet comments
  • Loading branch information
octref authored Feb 24, 2019
2 parents 80e3634 + 0b0c2ce commit 729a953
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/emmet/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ export function getMappingForIncludedLanguages(): any {
/**
* Get the corresponding emmet mode for given vscode language mode
* Eg: jsx for typescriptreact/javascriptreact or pug for jade
* If the language is not supported by emmet or has been exlcuded via `exlcudeLanguages` setting,
* If the language is not supported by emmet or has been excluded via `excludeLanguages` setting,
* then nothing is returned
*
* @param exlcudedLanguages Array of language ids that user has chosen to exlcude for emmet
* @param excludedLanguages Array of language ids that user has chosen to exclude for emmet
*/
export function getEmmetMode(language: string, excludedLanguages: string[]): string | undefined {
if (!language || excludedLanguages.indexOf(language) > -1) {
Expand Down

0 comments on commit 729a953

Please sign in to comment.