git.fiddlerwoaroof.com
Browse code

fix: reorder definitions

Ed L authored on 15/07/2023 21:14:55
Showing 1 changed files
... ...
@@ -32,14 +32,6 @@
32 32
   :components ((:module "t"
33 33
                 :components ((:file "lens")))))
34 34
 
35
-(asdf:defsystem #:data-lens/beta/transducers
36
-  :description #.(format nil "~@{~a~^ ~}"
37
-                         "A collection of transducers to reduce stream-manipulation overhead")
38
-  :author "Edward Langley <el-cl@elangley.org>"
39
-  :license "Apache v2"
40
-  :depends-on (:data-lens/transducers)
41
-  :in-order-to ((test-op (test-op :data-lens/transducers))))
42
-
43 35
 (asdf:defsystem #:data-lens/transducers
44 36
   :description #.(format nil "~@{~a~^ ~}"
45 37
                          "A collection of transducers to reduce stream-manipulation overhead")
... ...
@@ -55,6 +47,14 @@
55 47
                (:file "transducers")
56 48
                (:file "lazy-sequence")))
57 49
 
50
+(asdf:defsystem #:data-lens/beta/transducers
51
+  :description #.(format nil "~@{~a~^ ~}"
52
+                         "A collection of transducers to reduce stream-manipulation overhead")
53
+  :author "Edward Langley <el-cl@elangley.org>"
54
+  :license "Apache v2"
55
+  :depends-on (:data-lens/transducers)
56
+  :in-order-to ((test-op (test-op :data-lens/transducers))))
57
+
58 58
 (asdf:defsystem #:data-lens/transducers/test
59 59
   :description "tests for the transducers"
60 60
   :author "Edward Langley <el-cl@elangley.org>"