Skip to content

Commit a79b1aa

Browse files
committed
Fix typo (#866)
1 parent 06b6e00 commit a79b1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4799,7 +4799,7 @@ To get the automatically inserted identifier in node-oracledb, use a
47994799
. . .
48004800
connection.execute(
48014801
"INSERT INTO mytable (mydata) VALUES ('Hello') RETURN myid INTO :id",
4802-
{id : {type: oracledb.NUMEBR, dir: oracledb.BIND_OUT } },
4802+
{id : {type: oracledb.NUMBER, dir: oracledb.BIND_OUT } },
48034803
function (err, result) {
48044804
if (err) { console.error(err.message); return; }
48054805
console.log(result.outBinds.id); // print the ID of the inserted row

0 commit comments

Comments
 (0)