1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-21 21:17:50 +02:00

Fix some capitalisation.

This commit is contained in:
Alec Thomas 2017-09-29 09:56:23 +10:00
parent a430eb8138
commit 528bed2b60
3 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -13,4 +13,4 @@
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/ .glide/
models/ _models/

View File

@ -4,8 +4,8 @@ import (
. "github.com/alecthomas/chroma" // nolint . "github.com/alecthomas/chroma" // nolint
) )
// Antlr lexer. // ANTLR lexer.
var Antlr = Register(MustNewLexer( var ANTLR = Register(MustNewLexer(
&Config{ &Config{
Name: "ANTLR", Name: "ANTLR",
Aliases: []string{"antlr"}, Aliases: []string{"antlr"},

View File

@ -520,8 +520,8 @@ var (
} }
) )
// Emacslisp lexer. // EmacsLisp lexer.
var Emacslisp = Register(TypeRemappingLexer(MustNewLexer( var EmacsLisp = Register(TypeRemappingLexer(MustNewLexer(
&Config{ &Config{
Name: "EmacsLisp", Name: "EmacsLisp",
Aliases: []string{"emacs", "elisp", "emacs-lisp"}, Aliases: []string{"emacs", "elisp", "emacs-lisp"},