diff options
author | drh <drh@noemail.net> | 2014-04-30 13:19:09 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-04-30 13:19:09 +0000 |
commit | 224155dd1c165a133279ebaa52f80f771844cedc (patch) | |
tree | 6fb7f3f7b5a10dd31306a4e99fba8abaadd630cc /src/util.c | |
parent | 264d2b97a92f1e3a50e4a546724b17281cfd2d53 (diff) | |
download | sqlite-224155dd1c165a133279ebaa52f80f771844cedc.tar.gz sqlite-224155dd1c165a133279ebaa52f80f771844cedc.zip |
Fix long-standing typos in comments.
FossilOrigin-Name: b9f91317c34d07769a95dc2f905a6ccabceb64a3
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c index d88c17b75..577d552ac 100644 --- a/src/util.c +++ b/src/util.c @@ -1246,8 +1246,8 @@ LogEst sqlite3LogEstAdd(LogEst a, LogEst b){ } /* -** Convert an integer into a LogEst. In other words, compute a -** good approximatation for 10*log2(x). +** Convert an integer into a LogEst. In other words, compute an +** approximation for 10*log2(x). */ LogEst sqlite3LogEst(u64 x){ static LogEst a[] = { 0, 2, 3, 5, 6, 7, 8, 9 }; |