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

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

[nongnu] elpa/emacsql 961c689269 011/427: Rename information to constrai


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 961c689269 011/427: Rename information to constraints.
Date: Tue, 13 Dec 2022 02:59:23 -0500 (EST)

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

    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))
 



reply via email to

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