Merge pull request #1246 from chvanikoff/typo_fix

typo
This commit is contained in:
Garen Torikian 2013-02-12 14:32:00 -08:00
commit f8f277d79b
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ var %language%HighlightRules = function() {
this.$rules =
%languageTokens%
%respositoryRules%
%repositoryRules%
};
oop.inherits(%language%HighlightRules, TextHighlightRules);

View file

@ -270,7 +270,7 @@ function convertLanguage(name) {
var languageHighlightRules = fillTemplate(modeHighlightTemplate, {
language: languageNameSanitized,
languageTokens: patterns,
respositoryRules: "/*** START REPOSITORY RULES\n" + repository + "\nEND REPOSITORY RULES ***/",
repositoryRules: "/*** START REPOSITORY RULES\n" + repository + "\nEND REPOSITORY RULES ***/",
uuid: language.uuid,
name: name
});