Skip to content

Commit

Permalink
doc: fix typo callsite.lineNumber
Browse files Browse the repository at this point in the history
PR-URL: #54969
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Chemi Atlow <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
RafaelGSS authored and targos committed Oct 4, 2024
1 parent c1d73ab commit 29866ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ function exampleFunction() {
console.log(`CallSite ${index + 1}:`);
console.log(`Function Name: ${callSite.functionName}`);
console.log(`Script Name: ${callSite.scriptName}`);
console.log(`Line Number: ${callSite.lineNumer}`);
console.log(`Line Number: ${callSite.lineNumber}`);
console.log(`Column Number: ${callSite.column}`);
});
// CallSite 1:
Expand Down

0 comments on commit 29866ca

Please sign in to comment.