aboutsummaryrefslogtreecommitdiff
path: root/checker
diff options
context:
space:
mode:
authorMaxime Dénès2017-05-02 13:48:32 +0200
committerMaxime Dénès2017-05-02 13:48:32 +0200
commit63503b99c46b27009e85e5c0fa9588b7424a589d (patch)
treecd109f724c343e85f888736293044b91240facba /checker
parent249b19897671b95ce0a3b8aba6b24005a315bb8c (diff)
parentd0252cac3167ef1e5cd26c1b9b40aea06d343413 (diff)
Merge PR#596: Fix for bug 5507. Mispelt de Bruijn.
Diffstat (limited to 'checker')
-rw-r--r--checker/term.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/checker/term.ml b/checker/term.ml
index 591348cb69..24e6008d34 100644
--- a/checker/term.ml
+++ b/checker/term.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* This module instantiates the structure of generic deBruijn terms to Coq *)
+(* This module instantiates the structure of generic de Bruijn terms to Coq *)
open CErrors
open Util
@@ -94,7 +94,7 @@ let closedn n c =
in
try closed_rec n c; true with LocalOccur -> false
-(* [closed0 M] is true iff [M] is a (deBruijn) closed term *)
+(* [closed0 M] is true iff [M] is a (de Bruijn) closed term *)
let closed0 = closedn 0