Merge highlight and aliases options

This commit is contained in:
1computer1 2019-03-14 20:29:03 -04:00
parent b3a6858ac0
commit 9a5258d91d
8 changed files with 4 additions and 12 deletions

View file

@ -3,8 +3,7 @@ const Language = require('../struct/Language');
class FSharp extends Language {
constructor() {
super('fsharp', {
highlight: 'fs',
aliases: ['fsharp', 'f#', 'fs']
aliases: ['fsharp', 'fs']
});
}
}