chore: standardize names with "transducers"

This commit is contained in:
Edward
2021-01-04 14:13:34 -08:00
parent db5988ec3a
commit c56d5c51fd
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
(:file "optics") (:file "optics")
(:file "lens"))) (:file "lens")))
(asdf:defsystem #:data-lens/beta/transducer (asdf:defsystem #:data-lens/beta/transducers
:description #.(format nil "~@{~a~^ ~}" :description #.(format nil "~@{~a~^ ~}"
"A collection of transducers to reduce stream-manipulation overhead") "A collection of transducers to reduce stream-manipulation overhead")
:author "Edward Langley <el-cl@elangley.org>" :author "Edward Langley <el-cl@elangley.org>"
@ -27,7 +27,7 @@
(:file "transducers") (:file "transducers")
(:file "lazy-sequence"))) (:file "lazy-sequence")))
(asdf:defsystem #:data-lens/transducer/test (asdf:defsystem #:data-lens/transducers/test
:description "tests for the transducers" :description "tests for the transducers"
:author "Edward Langley <el-cl@elangley.org>" :author "Edward Langley <el-cl@elangley.org>"
:license "MIT" :license "MIT"
@ -36,4 +36,4 @@
:serial t :serial t
:perform (test-op (o c) (symbol-call :fiveam '#:run! :data-lens.transducers)) :perform (test-op (o c) (symbol-call :fiveam '#:run! :data-lens.transducers))
:components ((:module "t" :components ((:module "t"
:components ((:file "transducer"))))) :components ((:file "transducers")))))