File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -231,13 +231,13 @@ function Highlights(name, store) {
231
231
return base != this . class && base in highlight ? highlight [ base ] : null ;
232
232
} ) ;
233
233
234
- let hightlightKeys = [ ] ;
234
+ let highlightKeys = [ ] ;
235
235
for ( [ k , v ] in this )
236
- hightlightKeys . push ( k + ": " + util . escapeString ( v || "undefined" ) ) ;
237
- Highlight . prototype . toString = function ( ) "Highlight(" + this . class + ")\n\t" + hightlightKeys . join ( "\n\t" ) ;
236
+ highlightKeys . push ( k + ": " + util . escapeString ( v || "undefined" ) ) ;
237
+ Highlight . prototype . toString = function ( ) "Highlight(" + this . class + ")\n\t" + highlightKeys . join ( "\n\t" ) ;
238
238
239
239
function keys ( ) {
240
- return Object . keys ( hightlight ) . sort ( ) ;
240
+ return Object . keys ( highlight ) . sort ( ) ;
241
241
}
242
242
243
243
this . __iterator__ = function ( ) iter ( keys ( ) . map ( v => highlight [ v ] ) ) ;
@@ -811,7 +811,7 @@ Module("highlight", {
811
811
literal : 1 ,
812
812
options : [ [ [ "-append" , "-a" ] , commands . OPTION_NOARG ] ] ,
813
813
serial : function ( ) {
814
- return Array . from ( iter ( hightlight ) )
814
+ return Array . from ( iter ( highlight ) )
815
815
. filter ( v => v . value != v . default )
816
816
. map ( v => ( {
817
817
command : this . name ,
You can’t perform that action at this time.
0 commit comments