Skip to content

Commit 73b0b9c

Browse files
committed
fully qualify all library names
1 parent 0561b82 commit 73b0b9c

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

Generalities/uu0.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
1616

1717
(** Imports *)
1818

19-
Require Export uuu.
19+
Require Export Foundations.Generalities.uuu.
2020

2121
(** Universe structure *)
2222

Proof_of_Extensionality/funextfun.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This file contains the formulation of the univalence axiom and the proof that it
1111

1212
Unset Automatic Introduction. (** This line has to be removed for the file to compile with Coq8.2 *)
1313

14-
Require Export uu0.
14+
Require Export Foundations.Generalities.uu0.
1515

1616

1717
(** ** Univalence axiom. *)

hlevel1/hProp.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
2626
(** Imports *)
2727

2828

29-
Require Export uu0 .
29+
Require Export Foundations.Generalities.uu0 .
3030

3131
(** Universe structure *)
3232

hlevel2/algebra1a.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1313

1414
(** Imports *)
1515

16-
Require Export hSet .
16+
Require Export Foundations.hlevel2.hSet .
1717

1818

1919
(** To upstream files *)

hlevel2/algebra1b.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1313

1414
(** Imports *)
1515

16-
Require Export algebra1a .
16+
Require Export Foundations.hlevel2.algebra1a .
1717

1818

1919
(** To upstream files *)

hlevel2/algebra1c.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1313

1414
(** Imports *)
1515

16-
Require Export algebra1b .
16+
Require Export Foundations.hlevel2.algebra1b .
1717

1818

1919
(** To upstream files *)

hlevel2/algebra1d.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1313

1414
(** Imports *)
1515

16-
Require Export algebra1c .
16+
Require Export Foundations.hlevel2.algebra1c .
1717

1818

1919
(** To upstream files *)

hlevel2/finitesets.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
1818

1919
(** Imports. *)
2020

21-
Require Export hProp .
22-
Require Export stnfsets .
23-
Require Export hSet .
21+
Require Export Foundations.hlevel1.hProp .
22+
Require Export Foundations.hlevel2.stnfsets .
23+
Require Export Foundations.hlevel2.hSet .
2424

2525

2626

hlevel2/hSet.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1717

1818
(** Imports *)
1919

20-
Require Export hProp .
20+
Require Export Foundations.hlevel1.hProp .
2121

2222

2323
(** ** The type of sets i.e. of types of h-level 2 in [ UU ] *)

hlevel2/hnat.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
1717

1818
(** Imports. *)
1919

20-
Require Export algebra1d .
20+
Require Export Foundations.hlevel2.algebra1d .
2121

2222
(** To up-stream files *)
2323

hlevel2/hq.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616

1717
(** Imports *)
1818

19-
Require Export hz .
19+
Require Export Foundations.hlevel2.hz .
2020

2121
Opaque hz .
2222

hlevel2/hz.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Unset Automatic Introduction. (** This line has to be removed for the file to co
1616

1717
(** Imports *)
1818

19-
Require Export hnat .
20-
Require Export algebra1d .
19+
Require Export Foundations.hlevel2.hnat .
20+
Require Export Foundations.hlevel2.algebra1d .
2121

2222

2323
(** Upstream *)

hlevel2/stnfsets.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ Unset Automatic Introduction. (* This line has to be removed for the file to com
1616
(** Imports. *)
1717

1818

19-
Require Export hnat .
19+
Require Export Foundations.hlevel2.hnat .
2020

2121

22-
(* To up-steram files *)
22+
(* To up-stream files *)
2323

2424

2525

0 commit comments

Comments
 (0)