1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

Kernel: Fix small typo in inline comment

This commit is contained in:
rileylyman 2021-06-27 18:48:05 -07:00 committed by Andreas Kling
parent beccc7e4fc
commit 640db93bdd

View file

@ -96,7 +96,7 @@ struct DeferredCallEntry {
}; };
class Processor; class Processor;
// Note: We only support processors at most at the moment, // Note: We only support 8 processors at most at the moment,
// so allocate 8 slots of inline capacity in the container. // so allocate 8 slots of inline capacity in the container.
using ProcessorContainer = Array<Processor*, 8>; using ProcessorContainer = Array<Processor*, 8>;