Remove semicolons

This commit is contained in:
Kevin Sawicki
2013-05-29 11:52:14 -07:00
parent 60881e2ecd
commit e19c0e4f87
2 changed files with 5 additions and 5 deletions

View File

@@ -1248,7 +1248,7 @@ describe 'TextBuffer', ->
buffer.setText("")
buffer.append("a")
expect(buffer.getText()).toBe "a"
buffer.append("b\nc");
buffer.append("b\nc")
expect(buffer.getText()).toBe "ab\nc"
describe "line ending support", ->

View File

@@ -292,9 +292,9 @@ describe "TextMateGrammar", ->
repository: {}
patterns: [
{
name: "comment-body";
begin: "//";
end: "\\n";
name: "comment-body"
begin: "//"
end: "\\n"
beginCaptures:
"0": { name: "comment-start" }
}
@@ -440,7 +440,7 @@ describe "TextMateGrammar", ->
grammar = syntax.selectGrammar("text.js")
{tokens} = grammar.tokenizeLine("var i; // http://github.com")
expect(tokens[0].value).toBe "var";
expect(tokens[0].value).toBe "var"
expect(tokens[0].scopes).toEqual ["source.js", "storage.modifier.js"]
expect(tokens[6].value).toBe "http://github.com"