hackwaly / vscode-ocaml

An extension for VS Code which provides support for the OCaml language.
MIT License
170 stars 26 forks source link

[syntax] comments break module signature definition #81

Open nadako opened 7 years ago

nadako commented 7 years ago

Looks like GitHub highlighter hates jokes as well:

module type JsonApi = sig
    type t
    val (* Ben & *) jarray : t list -> t
    val jobject : (string * t) list -> t
    val jbool : bool -> t
    val jstring : string -> t
    val jint : int -> t
    val jnull : t
end