docs: Change 'class' to 'struct' in codemirror-rust

This commit is contained in:
Brian Anderson 2012-09-23 21:08:37 -07:00
parent 1b1aea8e0e
commit 2dae768624
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ CodeMirror.defineMode("rust", function() {
"do": "else-style", "return": "else-style", "fail": "else-style",
"break": "atom", "cont": "atom", "const": "let", "resource": "fn",
"let": "let", "fn": "fn", "for": "for", "match": "match", "trait": "trait",
"impl": "impl", "type": "type", "enum": "enum", "class": "atom", "mod": "mod",
"impl": "impl", "type": "type", "enum": "enum", "struct": "atom", "mod": "mod",
"as": "op", "true": "atom", "false": "atom", "assert": "op", "check": "op",
"claim": "op", "extern": "ignore", "unsafe": "ignore", "import": "else-style",
"export": "else-style", "copy": "op", "log": "op",