1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-21 11:13:54 +03:00

Fix harmless typos in comments per

[forum:/forumpost/7849e58dd5|forum post 7849e58dd5]

FossilOrigin-Name: d1e22e2f76cce7eb9f9029646176daef2d9e41c7bb1d3e1da182fbdd0096605c
This commit is contained in:
drh
2021-01-07 16:10:14 +00:00
parent 31afee9372
commit c2dbf35f49
4 changed files with 16 additions and 16 deletions

View File

@@ -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); }