aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/db/jdbc.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/world/db/jdbc.lux28
1 files changed, 14 insertions, 14 deletions
diff --git a/stdlib/source/library/lux/world/db/jdbc.lux b/stdlib/source/library/lux/world/db/jdbc.lux
index 8fb53e9b0..e9df26b7f 100644
--- a/stdlib/source/library/lux/world/db/jdbc.lux
+++ b/stdlib/source/library/lux/world/db/jdbc.lux
@@ -1,29 +1,29 @@
(.module:
[library
- [lux (#- and int)
+ [lux {"-" [and int]}
[control
- [functor (#+ Functor)]
- [apply (#+ Apply)]
- [monad (#+ Monad do)]
- ["." try (#+ Try)]
+ [functor {"+" [Functor]}]
+ [apply {"+" [Apply]}]
+ [monad {"+" [Monad do]}]
+ ["." try {"+" [Try]}]
["ex" exception]
[concurrency
- ["." async (#+ Async) ("#\." monad)]]
+ ["." async {"+" [Async]} ("#\." monad)]]
[security
- ["!" capability (#+ capability:)]]]
+ ["!" capability {"+" [capability:]}]]]
[data
["." product]
[text
- ["%" format (#+ format)]]]
- ["." io (#+ IO)]
+ ["%" format {"+" [format]}]]]
+ ["." io {"+" [IO]}]
[world
- [net (#+ URL)]]
- [host (#+ import:)]]]
+ [net {"+" [URL]}]]
+ [host {"+" [import:]}]]]
[//
["." sql]]
- ["." / #_
- ["#." input (#+ Input)]
- ["#." output (#+ Output)]])
+ ["." / "_"
+ ["#." input {"+" [Input]}]
+ ["#." output {"+" [Output]}]])
(import: java/lang/String)