Browse Source

Kernel: Fix small typo in inline comment

rileylyman 4 years ago
parent
commit
640db93bdd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Kernel/Arch/x86/Processor.h

+ 1 - 1
Kernel/Arch/x86/Processor.h

@@ -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>;