aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-08-22 22:10:56 -0700
committerTom Faulhaber <git_net@infolace.com>2009-08-22 22:16:37 -0700
commit835bfe2a02c70c150f2354f8ef9e866f3e2fd180 (patch)
tree0d632b79df6e2bd0308355eb43bcf92c69c0077e /doc
parentab7e1757c4de4c5d05b8c286646c152d19e29825 (diff)
A couple of doc tweaks
Diffstat (limited to 'doc')
-rw-r--r--doc/datalog.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/datalog.markdown b/doc/datalog.markdown
index 097644c0..709ec72b 100644
--- a/doc/datalog.markdown
+++ b/doc/datalog.markdown
@@ -1,4 +1,4 @@
-# An overview of Datalog
+# An Overview of Datalog
By Jeffrey Straszheim
*What Datalog is, and what it can do for you.*
@@ -17,7 +17,7 @@ The implementation of Datalog that is provided (in this library) departs a bit f
Clojure Datalog supports an in memory relational database format, implemented in clojure.contrib.datalog.database ([here](http://github.com/richhickey/clojure-contrib/blob/master/src/clojure/contrib/datalog/database.clj)). It supports relations (tables) with named columns and simple hash based indexes. At the present time it does not support any integrity constraints (perhaps later).
-Tables are build with `make-database`, like this:
+Tables are built with `make-database`, like this:
(make-database
(relation :employee [:id :name :position])