Skip to content

Commit f7c31b2

Browse files
committed
typo on case
1 parent 26d3df3 commit f7c31b2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

plist.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
(require "digitama/plist.rkt")
88
(require "digitama/plist/bplist.rkt")
9-
(require "digitama/plist/info.plist.rkt")
9+
(require "digitama/plist/Info.plist.rkt")
1010

1111
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1212
(define plist-datum? : (-> Any Boolean : #:+ PList-Datum)

tamer/plist.rkt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#lang typed/racket
22

33
(require digimon/plist)
4-
(require digimon/location)
4+
(require digimon/system)
5+
(require digimon/collection)
56

67
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
78
(define bplist-prove : (-> Path-String Any Any Boolean)
@@ -21,9 +22,9 @@
2122
(equal? plist bplist))))
2223

2324
(module+ main
24-
(define bplist.dir : Path (build-path (assert (path-only (#%file)) path?) "bplist"))
25-
26-
(for/and ([info.rkt (in-list (directory-list bplist.dir #:build? #true))]
25+
(enter-digimon-zone!)
26+
27+
(for/and ([info.rkt (in-list (directory-list (build-path (digimon-path 'tamer) "bplist") #:build? #true))]
2728
#:when (equal? (path-get-extension info.rkt) #".rkt"))
2829
(define name : (Option Path) (file-name-from-path info.rkt))
2930

0 commit comments

Comments
 (0)