aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2021-01-07 16:10:14 +0000
committerdrh <drh@noemail.net>2021-01-07 16:10:14 +0000
commitc2dbf35f49af1587154597e33dffe72ffa2a47af (patch)
treeebe8eaf556d38a6cc2f5930ca57350cc23418905 /src/func.c
parent31afee93726e5a438fac58e9d921ec0584798004 (diff)
downloadsqlite-c2dbf35f49af1587154597e33dffe72ffa2a47af.tar.gz
sqlite-c2dbf35f49af1587154597e33dffe72ffa2a47af.zip
Fix harmless typos in comments per
[forum:/forumpost/7849e58dd5|forum post 7849e58dd5] FossilOrigin-Name: d1e22e2f76cce7eb9f9029646176daef2d9e41c7bb1d3e1da182fbdd0096605c
Diffstat (limited to 'src/func.c')
-rw-r--r--src/func.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/func.c b/src/func.c
index 6cd9fdce6..dcf5e6cf2 100644
--- a/src/func.c
+++ b/src/func.c
@@ -1953,7 +1953,7 @@ static void ceilingFunc(
/*
** On some systems, ceil() and floor() are intrinsic function. You are
-** unable to take a pointer to this functions. Hence, we here wrap them
+** unable to take a pointer to these functions. Hence, we here wrap them
** in our own actual functions.
*/
static double xCeil(double x){ return ceil(x); }