Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Fix typo in index.js #5187

Merged
merged 1 commit into from
Jun 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/debug-utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ var DebugUtils = {
} else if (node !== null && typeof node === "object") {
if (node.id !== undefined) {
if (astIds.has(node.id)) {
debug("id occured twice: %o", node.id);
debug("id occurred twice: %o", node.id);
return false;
} else {
astIds.add(node.id);
Expand Down