File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88
99export default class LanguageModel {
1010 constructor ( options ) {
11- this . enterKey = 'Enter' ,
12- this . shiftKey = 'Shift' ,
11+ this . enterKey = 'Enter'
12+ this . shiftKey = 'Shift'
1313 this . ok = 'OK'
1414 this . continue = 'Continue'
1515 this . pressEnter = 'Press :enterKey' ;
@@ -37,7 +37,7 @@ export default class LanguageModel {
3737 }
3838 /**
3939 * Inserts a new CSS class into the language model string to format the :string
40- * Use it in the component v-html directive: v-html="language.formatString(language.languageString)"
40+ * Use it in a component's v-html directive: v-html="language.formatString(language.languageString)"
4141 */
4242 formatString ( string ) {
4343 return string . replace ( / : ( \w + ) / g, ( match , word ) => {
You can’t perform that action at this time.
0 commit comments