Skip to content

Commit e97b0a6

Browse files
committed
detail: update text of some debug flags
1 parent 5e86167 commit e97b0a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/handle/inductive.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ open Core open Term open Print
1616
open Parsing open Syntax
1717

1818
(** Logging function for generating of inductive principle. *)
19-
let log_ind = Logger.make 'g' "indu" "induction principles generation"
19+
let log_ind = Logger.make 'g' "indu" "generation of induction principles"
2020
let log_ind = log_ind.pp
2121

2222
(** Type for inductive type definitions. *)

src/handle/rewrite.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ open Core open Term open Print
66
open Goal
77

88
(** Logging function for the rewrite tactic. *)
9-
let log = Logger.make 'r' "rewr" "the rewrite tactic"
9+
let log = Logger.make 'r' "rewr" "rewrite tactic"
1010
let log = log.pp
1111

1212
(** Equality configuration. *)

src/handle/why3_tactic.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ open Fol
88
open Goal
99

1010
(** Logging function for external prover calling with Why3. *)
11-
let log = Logger.make 'y' "why3" "why3 provers"
11+
let log = Logger.make 'y' "why3" "why3 tactic"
1212
let log = log.pp
1313

1414
(** [default_prover] contains the name of the current prover. Note that it can

src/parsing/scope.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ open Core open Term open Env open Sig_state open Print
1010
let term = Raw.term
1111

1212
(** Logging function for term scoping. *)
13-
let log_scop = Logger.make 'o' "scop" "term scoping"
13+
let log_scop = Logger.make 'o' "scop" "scoping"
1414
let log_scop = log_scop.pp
1515

1616
(** [find_qid ~find_sym prt prv ss env qid] returns a boxed term corresponding

0 commit comments

Comments
 (0)