aboutsummaryrefslogtreecommitdiffstats
path: root/src/sqlite.c
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-12-11 06:26:37 +0100
committerLars Ingebrigtsen2021-12-11 06:26:37 +0100
commit385f2faf347b18eb4624f97020a49ae7e3f315e2 (patch)
treeedfc905e68dbaf929012dab37f04fb15dfa76aaf /src/sqlite.c
parente5f71051a00a4ceb63cadc2513cb9619a1adffcc (diff)
downloademacs-385f2faf347b18eb4624f97020a49ae7e3f315e2.tar.gz
emacs-385f2faf347b18eb4624f97020a49ae7e3f315e2.zip
Fix some sqlite doc string typos
* src/sqlite.c (Fsqlite_load_extension, Fsqlite_more_p): Fix typos in doc strings.
Diffstat (limited to 'src/sqlite.c')
-rw-r--r--src/sqlite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite.c b/src/sqlite.c
index b1843bc573a..50989434ffa 100644
--- a/src/sqlite.c
+++ b/src/sqlite.c
@@ -578,7 +578,7 @@ DEFUN ("sqlite-rollback", Fsqlite_rollback, Ssqlite_rollback, 1, 1, 0,
578 578
579DEFUN ("sqlite-load-extension", Fsqlite_load_extension, 579DEFUN ("sqlite-load-extension", Fsqlite_load_extension,
580 Ssqlite_load_extension, 2, 2, 0, 580 Ssqlite_load_extension, 2, 2, 0,
581 doc: /* Load a an SQlite module into DB. 581 doc: /* Load an SQlite module into DB.
582MODULE should be the file name of an SQlite module .so file. */) 582MODULE should be the file name of an SQlite module .so file. */)
583 (Lisp_Object db, Lisp_Object module) 583 (Lisp_Object db, Lisp_Object module)
584{ 584{
@@ -622,7 +622,7 @@ DEFUN ("sqlite-columns", Fsqlite_columns, Ssqlite_columns, 1, 1, 0,
622} 622}
623 623
624DEFUN ("sqlite-more-p", Fsqlite_more_p, Ssqlite_more_p, 1, 1, 0, 624DEFUN ("sqlite-more-p", Fsqlite_more_p, Ssqlite_more_p, 1, 1, 0,
625 doc: /* Say whether there's any further results in SET. */) 625 doc: /* Say whether there are any further results in SET. */)
626 (Lisp_Object set) 626 (Lisp_Object set)
627{ 627{
628 check_sqlite (set, true); 628 check_sqlite (set, true);