emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql c5845884f4 021/427: Rename type to column.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql c5845884f4 021/427: Rename type to column.
Date: Tue, 13 Dec 2022 02:59:24 -0500 (EST)

branch: elpa/emacsql
commit c5845884f448e69812fa8fb8747b159b03251d12
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Rename type to column.
---
 README.md  | 2 +-
 emacsql.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index ce1a9bc8b9..8362cb320f 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,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 constraints.
+;; Or optionally provide column constraints.
 (emacsql-create db :employees '((name text) (id integer) salary))
 
 ;; Insert some data:
diff --git a/emacsql.el b/emacsql.el
index 046ccc5528..4c5ed414e6 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -23,7 +23,7 @@
 
 ;;     (emacsql-create db :employees '(name id salary))
 
-;; Type constraints can optionally be provided.
+;; Column constraints can optionally be provided.
 
 ;;     (emacsql-create db :employees '((name text) (id integer) salary))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]