summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-30 18:22:01 +1000
committerCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-30 18:22:01 +1000
commit92ea27bff7fed5d7548fce3c56c53df7ffd62147 (patch)
tree3d9229a27a53d3991cdda4f48450f6475ee8a7b6 /README.md
parent22784e9846a645f62b2a31b320c802a8140a2ad0 (diff)
Remove some whitespace (excuse to test jenkins trigger)
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 1e2e638..bfe487d 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ Latest release: `0.1.0`
(require '[clojure-sql.jdbc :as jdbc])
(jdbc/use-jdbc! "postgres://user:pass@localhost:5432/db")
-
+
(-> (s/table :users)
(s/project [:id :username])
deref)
@@ -133,10 +133,10 @@ The primary operations available in `clojure-sql` are the following:
:::clojure
(def users (-> (s/table :users)
(s/project [:id :username :person])))
-
+
(def people (-> (s/table :people)
(s/project [:id :name])))
-
+
(s/join (s/rename users (s/as-subobject :user))
(s/rename people (s/as-subobject :person))
:on `(= :user.person :person.id))