branch: elpa/emacsql
commit 961c68926905767e6e4f8fb259d2379bf2ffcfaf
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
Rename information to constraints.
---
README.md | 2 +-
emacsql.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 54b6d03745..901e91926d 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Requires Emacs 24 or later.
;; Create a table. A table identifier can be any kind of lisp value.
(emacsql-create db :employees '(name id salary))
-;; Or optionally provide type information:
+;; Or optionally provide type constraints.
(emacsql-create db :employees '((name text) (id integer) salary))
;; Insert some data:
diff --git a/emacsql.el b/emacsql.el
index 07f1404a8a..54ff313d41 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -23,7 +23,7 @@
;; (emacsql-create db :employees '(name id salary))
-;; Type information can optionally be provided.
+;; Type constraints can optionally be provided.
;; (emacsql-create db :employees '((name text) (id integer) salary))