diff options
author | drh <drh@noemail.net> | 2021-01-07 16:10:14 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2021-01-07 16:10:14 +0000 |
commit | c2dbf35f49af1587154597e33dffe72ffa2a47af (patch) | |
tree | ebe8eaf556d38a6cc2f5930ca57350cc23418905 /src/func.c | |
parent | 31afee93726e5a438fac58e9d921ec0584798004 (diff) | |
download | sqlite-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.c | 2 |
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); } |