aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2018-02-28 12:22:10 +0100
committerMarc André Tanner <mat@brain-dump.org>2018-02-28 12:22:10 +0100
commit2c359a7d9dcbc2ac9f5e53cfebd73f9013071a2b (patch)
tree5e3f3ff7496ac76187527448ea56f15b63504b1c /lua
parenta1547dd97995d07103f153bcca648883f7372a88 (diff)
downloadvis-2c359a7d9dcbc2ac9f5e53cfebd73f9013071a2b.tar.gz
vis-2c359a7d9dcbc2ac9f5e53cfebd73f9013071a2b.tar.xz
lexer: add reference to ReasonML homepage
Diffstat (limited to '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',