branch: elpa/emacsql
commit e4f1dcae91f91c5fa6dc1b0097a6c524e98fdf2b
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    Fix typos in docstrings
---
 emacsql-compiler.el | 2 +-
 emacsql-sqlite.el   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacsql-compiler.el b/emacsql-compiler.el
index f75b12877e..575af47c88 100644
--- a/emacsql-compiler.el
+++ b/emacsql-compiler.el
@@ -150,7 +150,7 @@
     (upcase (replace-regexp-in-string "-" " " name))))
 
 (defun emacsql--prepare-constraints (constraints)
-  "Compile CONSTRAINTS into a partial SQL expresson."
+  "Compile CONSTRAINTS into a partial SQL expression."
   (mapconcat
    #'identity
    (cl-loop for constraint in constraints collect
diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el
index 2f00970f57..b58a1181a8 100644
--- a/emacsql-sqlite.el
+++ b/emacsql-sqlite.el
@@ -213,7 +213,7 @@ been remove, so we can no longer fall back to that.
     (nreverse value)))
 
 (defun emacsql-sqlite-list-tables (connection)
-  "Return a list of symbols identifing tables in CONNECTION.
+  "Return a list of symbols identifying tables in CONNECTION.
 Tables whose names begin with \"sqlite_\", are not included
 in the returned value."
   (mapcar #'car

Reply via email to