aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.txt1
-rw-r--r--doc/datalog.markdown4
2 files changed, 2 insertions, 3 deletions
diff --git a/README.txt b/README.txt
index 45998c3e..6b5bf140 100644
--- a/README.txt
+++ b/README.txt
@@ -69,4 +69,3 @@ Chris Houser
David Miller
Stuart Sierra
Frantisek Sodomka
-Jeffrey Straszheim
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])