Skip to content

Commit

Permalink
Improve documentation for sep.aug
Browse files Browse the repository at this point in the history
  • Loading branch information
raphink committed Dec 1, 2011
1 parent d410ee4 commit c14cb6c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion lenses/sep.aug
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,27 @@ About: License

module Sep =

(* Variable: colon *)
let colon = Util.del_str ":"

(* Variable: comma *)
let comma = Util.del_str ","

(* Variable: equal *)
let equal = Util.del_str "="

(* Variable: space
Deletes a <Rx.space> and default to a single space *)
let space = del Rx.space " "

(* Variable: tab
Deletes a <Rx.space> and default to a tab *)
let tab = del Rx.space "\t"

(* Variable: opt_space
Deletes a <Rx.opt_space> and default to an empty string *)
let opt_space = del Rx.opt_space ""
let opt_tab = del Rx.opt_space "\t"

(* Variable: opt_tab
Deletes a <Rx.opt_space> and default to a tab *)
let opt_tab = del Rx.opt_space "\t"

0 comments on commit c14cb6c

Please sign in to comment.