aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorHugo Herbelin2017-06-20 21:58:11 +0200
committerHugo Herbelin2017-10-24 11:14:14 +0200
commit1b3b1b36cfd21f3f79b7aec7249acc8ab292f25a (patch)
tree8fc5a9c26a29e07e6e0e9006e1d0574fab807ee8 /plugins
parente29948c5606bfcab182cf0f325750fdb3215856e (diff)
Typo in comment in tactic_matching.ml.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ltac/tactic_matching.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/tactic_matching.ml b/plugins/ltac/tactic_matching.ml
index 63b8cc4824..18bb7d2dbd 100644
--- a/plugins/ltac/tactic_matching.ml
+++ b/plugins/ltac/tactic_matching.ml
@@ -203,7 +203,7 @@ module PatternMatching (E:StaticEnvironment) = struct
let pick l = pick l imatching_error
- (** Declares a subsitution, a context substitution and a term substitution. *)
+ (** Declares a substitution, a context substitution and a term substitution. *)
let put subst context terms : unit m =
let s = { subst ; context ; terms ; lhs = () } in
{ stream = fun k ctx -> match merge s ctx with None -> Proofview.tclZERO matching_error | Some s -> k () s }