Skip to content

Commit 99cc348

Browse files
committed
Internal doc typo fixes reported in [forum:01d15f21b6|forum post 01d15f21b6].
1 parent 5df2c97 commit 99cc348

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/func.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1919,7 +1919,7 @@ static void kahanBabuskaNeumaierInit(
19191919
** that it returns NULL if it sums over no inputs. TOTAL returns
19201920
** 0.0 in that case. In addition, TOTAL always returns a float where
19211921
** SUM might return an integer if it never encounters a floating point
1922-
** value. TOTAL never fails, but SUM might through an exception if
1922+
** value. TOTAL never fails, but SUM might throw an exception if
19231923
** it overflows an integer.
19241924
*/
19251925
static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){

src/util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@ int sqlite3MulInt64(i64 *pA, i64 iB){
16391639
}
16401640

16411641
/*
1642-
** Compute the absolute value of a 32-bit signed integer, of possible. Or
1642+
** Compute the absolute value of a 32-bit signed integer, if possible. Or
16431643
** if the integer has a value of -2147483648, return +2147483647
16441644
*/
16451645
int sqlite3AbsInt32(int x){

0 commit comments

Comments
 (0)