Skip to content

Commit 0e58cc4

Browse files
committed
Merge pull request #16 from bmsherman/patch-1
Fix typo
2 parents c269684 + 6f4e1ff commit 0e58cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Ideas
1111
- Notations should be hidden by modules that are explicitly opened.
1212
- This avoids clashes between precedence.
1313
- TB: Actually, this does not completely avoid clashes, if we have to open two modules at the same time (for instance, I often need to open Equality, to get dependent destruction, which conflicts with the rest of my development)
14-
- TB: I like the idea of having to prefix operations by the name of the module (e.g., DList.fold, DList.map, DList.T), and yet to benefit from the support of notations, without opening this module. I implement that by having a module DList that contains the operations, inside the file DList. The notations leave in the file DList, and I do Require Import DList everywhere...
14+
- TB: I like the idea of having to prefix operations by the name of the module (e.g., DList.fold, DList.map, DList.T), and yet to benefit from the support of notations, without opening this module. I implement that by having a module DList that contains the operations, inside the file DList. The notations live in the file DList, and I do Require Import DList everywhere...
1515
- Avoid the use of the 'core' hint database.
1616
- Avoid the use of dependent functions, e.g. dependendent decidable equality,
1717
in favor of their boolen counter-parts. Use type-classes to expose the proofs.

0 commit comments

Comments
 (0)