Rename for consistency

This commit is contained in:
Ray Miller 2024-12-09 16:20:04 +00:00
parent e67e57b604
commit 3e2ff86eec
Signed by: ray
GPG key ID: 043F786C4CD681B8
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.log

View file

@ -1,4 +1,4 @@
(define-module (algo priority-queue)
(define-module (algorithms priority-queue)
#:use-module (ice-9 match)
#:export (make-priority-queue
pq-length

View file

@ -1,4 +1,4 @@
(use-modules (algo priority-queue)
(use-modules (algorithms priority-queue)
(quickcheck)
(quickcheck arbitrary)
(quickcheck property)