diff options
author | drh <drh@noemail.net> | 2014-11-20 23:21:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-11-20 23:21:23 +0000 |
commit | 643091f07104b3dd2e3793286ddb1f1b5eb99f87 (patch) | |
tree | 1ed53c7fa205702bb0038024e8c9ee53e0bdf8fa /src | |
parent | 2d8233157da0be2fa529b14c4f625f3c15ec38af (diff) | |
download | sqlite-643091f07104b3dd2e3793286ddb1f1b5eb99f87.tar.gz sqlite-643091f07104b3dd2e3793286ddb1f1b5eb99f87.zip |
Fix a typo in a requirements mark on the abs() SQL function.
FossilOrigin-Name: b1e6c02f8b9a2afaa12ac15a33e3f698c3be27d6
Diffstat (limited to 'src')
-rw-r--r-- | src/func.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.c b/src/func.c index cf556e243..a05799341 100644 --- a/src/func.c +++ b/src/func.c @@ -157,8 +157,8 @@ static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ default: { /* Because sqlite3_value_double() returns 0.0 if the argument is not ** something that can be converted into a number, we have: - ** IMP: R-57326-31541 Abs(X) return 0.0 if X is a string or blob that - ** cannot be converted to a numeric value. + ** IMP: R-01992-00519 Abs(X) returns 0.0 if X is a string or blob + ** that cannot be converted to a numeric value. */ double rVal = sqlite3_value_double(argv[0]); if( rVal<0 ) rVal = -rVal; |