diff options
author | drh <> | 2021-04-16 11:05:19 +0000 |
---|---|---|
committer | drh <> | 2021-04-16 11:05:19 +0000 |
commit | 81e5a9a6df9528f7ba4bc0e30a235cd056d5450c (patch) | |
tree | a83f73f7da2ed7fef2b2d6cdfdfb2389b9357cc4 /src/func.c | |
parent | 34c11e2f4b5a476405156856320174e464b86318 (diff) | |
download | sqlite-81e5a9a6df9528f7ba4bc0e30a235cd056d5450c.tar.gz sqlite-81e5a9a6df9528f7ba4bc0e30a235cd056d5450c.zip |
Fix the comment on the implementation of the pi() SQL function. No changes
to code.
FossilOrigin-Name: 5620bd466eb10fd4daf51af9b88d8221f981dc0ceabfa84a0e1d5c817f635429
Diffstat (limited to 'src/func.c')
-rw-r--r-- | src/func.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/func.c b/src/func.c index aedbda6f3..efb18a3fa 100644 --- a/src/func.c +++ b/src/func.c @@ -2071,9 +2071,7 @@ static void math2Func( } /* -** Implementation of 2-argument SQL math functions: -** -** power(X,Y) - Compute X to the Y-th power +** Implementation of 0-argument pi() function. */ static void piFunc( sqlite3_context *context, |