Skip to content

Commit 6a4d097

Browse files
committed
Merge pull request nwjs#762 from ghostandthemachine/master
Fix typo in logging allocation of object with unknown type
2 parents 38fa800 + 7df0839 commit 6a4d097

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api/dispatcher_host.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ void DispatcherHost::OnAllocateObject(int object_id,
105105
} else if (type == "Window") {
106106
objects_registry_.AddWithID(new Window(object_id, this, option), object_id);
107107
} else {
108-
LOG(ERROR) << "Allocate an object of unknow type: " << type;
108+
LOG(ERROR) << "Allocate an object of unknown type: " << type;
109109
objects_registry_.AddWithID(new Base(object_id, this, option), object_id);
110110
}
111111
}

0 commit comments

Comments
 (0)