diff options
Diffstat (limited to 'inc/geshi/ocaml-brief.php')
-rw-r--r-- | inc/geshi/ocaml-brief.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/geshi/ocaml-brief.php b/inc/geshi/ocaml-brief.php index da23c162f..8c1551920 100644 --- a/inc/geshi/ocaml-brief.php +++ b/inc/geshi/ocaml-brief.php @@ -4,7 +4,7 @@ * ---------- * Author: Flaie (fireflaie@gmail.com) * Copyright: (c) 2005 Flaie, Nigel McNie (http://qbnz.com/highlighter) - * Release Version: 1\.0\.8 + * Release Version: 1.0.8.3 * Date Started: 2005/08/27 * * OCaml (Objective Caml) language file for GeSHi. @@ -47,7 +47,7 @@ $language_data = array ( 'KEYWORDS' => array( /* main OCaml keywords */ 1 => array( - 'and', 'As', 'asr', 'begin', 'Class', 'Closed', 'constraint', 'do', 'done', 'downto', 'else', + 'and', 'as', 'asr', 'begin', 'class', 'closed', 'constraint', 'do', 'done', 'downto', 'else', 'end', 'exception', 'external', 'failwith', 'false', 'flush', 'for', 'fun', 'function', 'functor', 'if', 'in', 'include', 'inherit', 'incr', 'land', 'let', 'load', 'los', 'lsl', 'lsr', 'lxor', 'match', 'method', 'mod', 'module', 'mutable', 'new', 'not', 'of', 'open', 'option', 'or', 'parser', @@ -57,9 +57,9 @@ $language_data = array ( ), /* highlighting symbols is really important in OCaml */ 'SYMBOLS' => array( - ';', '!', ':', '.', '=', '%', '^', '*', '-', '/', '+', - '>', '<', '(', ')', '[', ']', '&', '|', '#', "'" - ), + ';', '!', ':', '.', '=', '%', '^', '*', '-', '/', '+', + '>', '<', '(', ')', '[', ']', '&', '|', '#', "'" + ), 'CASE_SENSITIVE' => array( GESHI_COMMENTS => false, 1 => false, |