Skip to content

Commit a660e7b

Browse files
committed
Small fixes
1 parent f863077 commit a660e7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/models/LanguageModel.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
export 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) => {

0 commit comments

Comments
 (0)