Skip to content

Commit

Permalink
Avoid parse errors with new string literal syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenth committed Oct 20, 2014
1 parent b7fec0f commit 9828d1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/milter.mli
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ val setconn : string -> unit
be carried. The socket must be specified as a string following the
formats below.
- [{unix|local}:/path/to/file] -- A named pipe.
- [inet:port@{hostname|ip-address}] -- An IPV4 socket.
- [inet6:port@{hostname|ip-address}] -- An IPV6 socket.
- [(unix|local):/path/to/file] -- A named pipe.
- [inet:port@(hostname|ip-address)] -- An IPV4 socket.
- [inet6:port@(hostname|ip-address)] -- An IPV6 socket.
Must be called once before {!main}. *)

Expand Down

0 comments on commit 9828d1f

Please sign in to comment.