Skip to content

Commit

Permalink
chore: change CR's to "someday"
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrinberg committed Aug 30, 2024
1 parent 0a66e59 commit 8c76e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/compile.mli
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ val compile : Ast.t -> re
val group_count : re -> int
val group_names : re -> (string * int) list

(* CR rgrinberg: deprecate one of these *)
(* CR-someday rgrinberg: deprecate one of these *)
val print_re : re Fmt.t
val pp_re : re Fmt.t
2 changes: 1 addition & 1 deletion lib/cset.ml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ let set str =

let blank = set "\t "

(* CR rgrinberg: this [lower] doesn't match [clower] *)
(* CR-someday rgrinberg: this [lower] doesn't match [clower] *)
let lower = union_all [ rg 'a' 'z'; char '\181'; rg '\223' '\246'; rg '\248' '\255' ]
let alpha = union_all [ lower; upper; char '\170'; char '\186' ]
let alnum = union_all [ alpha; cdigit ]
Expand Down

0 comments on commit 8c76e0e

Please sign in to comment.