diff options
| author | Théo Zimmermann | 2017-05-01 17:48:57 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2017-05-01 17:48:57 +0200 |
| commit | d0252cac3167ef1e5cd26c1b9b40aea06d343413 (patch) | |
| tree | 9748fb6a7260592a1e0baca9da37c22d400ee51d /checker | |
| parent | 5365971dfdf4136586527aa4f4c85fbfebeee0bd (diff) | |
More consistent writing of de Bruijn.
Diffstat (limited to 'checker')
| -rw-r--r-- | checker/term.ml | 4 |
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 |
