Fix spelling of the example abbreviation (e.g.)

This commit is contained in:
Waldir Pimenta
2019-06-05 15:00:26 +01:00
committed by Alex Ross
parent 41a6a0a378
commit f3e4e47164
27 changed files with 44 additions and 44 deletions

View File

@@ -491,7 +491,7 @@ export function isValidLocationForEmmetAbbreviation(document: vscode.TextDocumen
}
let valid = true;
let foundSpace = false; // If < is found before finding whitespace, then its valid abbreviation. Eg: <div|
let foundSpace = false; // If < is found before finding whitespace, then its valid abbreviation. E.g.: <div|
let i = textToBackTrack.length - 1;
if (textToBackTrack[i] === startAngle) {
return false;