Skip to content

Commit

Permalink
Fix command typo in generate-index.js
Browse files Browse the repository at this point in the history
`console.warning(err)` --> `console.warn(err)` 🤦‍♂️

Backport to 4.2
  • Loading branch information
mmattel authored Jun 4, 2024
1 parent 31280e5 commit 5882965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext-antora/generate-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function indexDelete(client) {
resolve(resp)
})
.catch((err) => {
console.warning(err)
console.warn(err)
resolve(true)
})
})
Expand Down

0 comments on commit 5882965

Please sign in to comment.