Skip to content

Commit 875855a

Browse files
authored
fix: memory leak in code editor widget (microsoft#205488) (microsoft#205542)
Documentation: CSS setting is incorrect.
1 parent 05bf957 commit 875855a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extensions/css-language-features/package.nls.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"css.lint.emptyRules.desc": "Do not use empty rulesets.",
1313
"css.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
1414
"css.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
15-
"css.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers.",
15+
"css.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
1616
"css.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
1717
"css.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
1818
"css.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
@@ -47,7 +47,7 @@
4747
"less.lint.emptyRules.desc": "Do not use empty rulesets.",
4848
"less.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
4949
"less.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
50-
"less.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers.",
50+
"less.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
5151
"less.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
5252
"less.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
5353
"less.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
@@ -81,7 +81,7 @@
8181
"scss.lint.emptyRules.desc": "Do not use empty rulesets.",
8282
"scss.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.",
8383
"scss.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.",
84-
"scss.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers.",
84+
"scss.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.",
8585
"scss.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
8686
"scss.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
8787
"scss.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",

0 commit comments

Comments
 (0)