diff options
author | stephan <stephan@noemail.net> | 2025-02-27 03:23:33 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-02-27 03:23:33 +0000 |
commit | 129203bce3935a2da60dd9c9e19b49e7610acea2 (patch) | |
tree | 5c6dbdc3e6c17245b54a361707ba6c16773819c7 /src/func.c | |
parent | e1e822ca23cef4e55ae12674ac48a25f51785a8c (diff) | |
download | sqlite-129203bce3935a2da60dd9c9e19b49e7610acea2.tar.gz sqlite-129203bce3935a2da60dd9c9e19b49e7610acea2.zip |
Internal doc typo fixes reported in [forum:01d15f21b6|forum post 01d15f21b6].
FossilOrigin-Name: d6514c20ff583ccc4fb3a526fb8f86a563224f513ee10bb39a978046bd952726
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 d8c812759..9e2839336 100644 --- a/src/func.c +++ b/src/func.c @@ -1919,7 +1919,7 @@ static void kahanBabuskaNeumaierInit( ** that it returns NULL if it sums over no inputs. TOTAL returns ** 0.0 in that case. In addition, TOTAL always returns a float where ** SUM might return an integer if it never encounters a floating point -** value. TOTAL never fails, but SUM might through an exception if +** value. TOTAL never fails, but SUM might throw an exception if ** it overflows an integer. */ static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){ |