1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-19 21:10:15 +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
.glide/
models/
_models/

View File

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

View File

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