aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/reason.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/reason.lua')
-rw-r--r--lua/lexers/reason.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/lexers/reason.lua b/lua/lexers/reason.lua
index eb5a727..b67e340 100644
--- a/lua/lexers/reason.lua
+++ b/lua/lexers/reason.lua
@@ -1,5 +1,5 @@
-- Copyright 2006-2017 Mitchell mitchell.att.foicica.com. See LICENSE.
--- Reason LPeg lexer.
+-- Reason (https://reasonml.github.io/) LPeg lexer.
local l = require('lexer')
local token, word_match = l.token, l.word_match
@@ -39,7 +39,6 @@ local type = token(l.TYPE, word_match{
})
-- Functions.
-
local func = token(l.FUNCTION, word_match{
'raise', 'invalid_arg', 'failwith', 'compare', 'min', 'max', 'succ', 'pred',
'mod', 'abs', 'max_int', 'min_int', 'sqrt', 'exp', 'log', 'log10', 'cos',