fix typos

This commit is contained in:
nightwing 2013-02-07 22:24:41 +04:00
commit 9ddf039cf6
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
define('ace/mode/ls', function(require, exports, module){
define(function(require, exports, module){
var identifier, LiveScriptMode, keywordend, stringfill;
identifier = '(?![\\d\\s])[$\\w\\xAA-\\uFFDC](?:(?!\\s)[$\\w\\xAA-\\uFFDC]|-[A-Za-z])*';
exports.Mode = LiveScriptMode = (function(superclass){

View file

@ -174,11 +174,11 @@ var RubyHighlightRules = function() {
}, {
stateName: "heredoc",
token : function(value, currentState, stack) {
var next = value[3] == '-' ? "heredoc" : "indentedHeredoc";
var next = value[2] == '-' ? "indentedHeredoc" : "heredoc";
var tokens = value.split(this.splitRegex);
stack.push(next, tokens[3]);
return [
{type:"constant", value: "<<"},
{type:"constant", value: tokens[1]},
{type:"string", value: tokens[2]},
{type:"support.class", value: tokens[3]},
{type:"string", value: tokens[4]}