Skip to content

Commit ff89dc4

Browse files
authored
Merge pull request #5 from libtx/rocq
Refactoring: From Coq -> From Stdlib
2 parents 0524713 + 63c911f commit ff89dc4

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/coqchk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
coq_version:
11-
- '8.20'
11+
- '9.0.1'
1212
ocaml_version: ['default']
1313
fail-fast: true # don't stop jobs if one fails
1414
steps:
1515
- uses: actions/checkout@v3
16-
- uses: coq-community/docker-coq-action@v1
16+
- uses: rocq-community/docker-coq-action@v1
1717
with:
1818
opam_file: 'coq-libtx-storage.opam'
1919
coq_version: ${{ matrix.coq_version }}

theories/Storage/Classes.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
List
33
Classes.EquivDec
44
Classes.SetoidClass.

theories/Storage/Instances/AVL.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
FMapAVL
33
OrderedType
44
Classes.EquivDec.

theories/Storage/Instances/List.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
List
33
Classes.EquivDec.
44

theories/Storage/Properties.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
List
33
Classes.EquivDec.
44

theories/Storage/Tactics.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From Coq Require Import
1+
From Stdlib Require Import
22
List
33
Classes.EquivDec.
44

0 commit comments

Comments
 (0)