1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

Kernel: Fix a comment typo

This commit is contained in:
Nico Weber 2022-09-30 23:00:30 -04:00 committed by Brian Gianforcaro
parent 911506af9f
commit b0c0ebc543
Notes: sideshowbarker 2024-07-17 06:45:52 +09:00

View file

@ -136,7 +136,7 @@ ErrorOr<void> Access::add_host_controller_and_enumerate_attached_devices(Nonnull
VERIFY(!m_host_controllers.contains(domain_number));
// Note: We need to register the new controller as soon as possible, and
// definitely before enumerating devices behing that.
// definitely before enumerating devices behind that.
m_host_controllers.set(domain_number, move(controller));
ErrorOr<void> expansion_result;
m_host_controllers.get(domain_number).value()->enumerate_attached_devices([&](DeviceIdentifier const& device_identifier) -> IterationDecision {