Skip to content

Commit

Permalink
[go mode] Add error as highlighted type
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaran-google authored and marijnh committed Jun 15, 2016
1 parent 58b549d commit 047afd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mode/go/go.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CodeMirror.defineMode("go", function(config) {
"bool":true, "byte":true, "complex64":true, "complex128":true,
"float32":true, "float64":true, "int8":true, "int16":true, "int32":true,
"int64":true, "string":true, "uint8":true, "uint16":true, "uint32":true,
"uint64":true, "int":true, "uint":true, "uintptr":true
"uint64":true, "int":true, "uint":true, "uintptr":true, "error": true
};

var atoms = {
Expand Down

0 comments on commit 047afd2

Please sign in to comment.