doc: rename invalid `function` parameter · nodejs/node@dc12a25
@@ -321,7 +321,7 @@ This method allows one or more SQL statements to be executed without returning
321321any results. This method is useful when executing SQL statements read from a
322322file. This method is a wrapper around [`sqlite3_exec()`][].
323323324-### `database.function(name[, options], function)`
324+### `database.function(name[, options], fn)`
325325326326<!-- YAML
327327added:
@@ -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`.
350350351351This method is used to create SQLite user-defined functions. This method is a
352352wrapper around [`sqlite3_create_function_v2()`][].