Skip to content

Commit dc12a25

Browse files
Renegade334aduh95
authored andcommitted
doc: rename invalid function parameter
PR-URL: #61942 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]>
1 parent f279233 commit dc12a25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/sqlite.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ This method allows one or more SQL statements to be executed without returning
321321
any results. This method is useful when executing SQL statements read from a
322322
file. This method is a wrapper around [`sqlite3_exec()`][].
323323

324-
### `database.function(name[, options], function)`
324+
### `database.function(name[, options], fn)`
325325

326326
<!-- YAML
327327
added:
@@ -343,10 +343,10 @@ added:
343343
arguments (between zero and [`SQLITE_MAX_FUNCTION_ARG`][]). If `false`,
344344
`function` must be invoked with exactly `function.length` arguments.
345345
**Default:** `false`.
346-
* `function` {Function} The JavaScript function to call when the SQLite
347-
function is invoked. The return value of this function should be a valid
348-
SQLite data type: see [Type conversion between JavaScript and SQLite][].
349-
The result defaults to `NULL` if the return value is `undefined`.
346+
* `fn` {Function} The JavaScript function to call when the SQLite function is
347+
invoked. The return value of this function should be a valid SQLite data type:
348+
see [Type conversion between JavaScript and SQLite][]. The result defaults to
349+
`NULL` if the return value is `undefined`.
350350

351351
This method is used to create SQLite user-defined functions. This method is a
352352
wrapper around [`sqlite3_create_function_v2()`][].

0 commit comments

Comments
 (0)