diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-20 05:08:40 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-20 05:08:40 +0100 |
| commit | 705d46811e1aba4a11149f3663bd7fd09f868408 (patch) | |
| tree | e6e8e87a34b2314c4049045c9825f7da1735ff3b | |
| parent | 2bd1d68300e94536b4c12ce1bd8d066b47c659d4 (diff) | |
BootKit.h: Documentation improvements to BDiskFormatFactory.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | dev/Boot/BootKit/BootKit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/Boot/BootKit/BootKit.h b/dev/Boot/BootKit/BootKit.h index d8f6d4ca..ebaeeb7c 100644 --- a/dev/Boot/BootKit/BootKit.h +++ b/dev/Boot/BootKit/BootKit.h @@ -269,7 +269,7 @@ namespace Boot private: /// @brief Write all of the requested catalogs into the filesystem. /// @param blob the blobs. - /// @param blob_sz the number of blobs to write. + /// @param blob_sz the number of blobs to write (n * sizeof(blob_struct)). /// @param part the NeFS partition block. Boolean WriteCatalogList(BFileDescriptor* blob, SizeT blob_sz, NEFS_ROOT_PARTITION_BLOCK& part) { @@ -314,9 +314,9 @@ namespace Boot }; /// @brief Format disk. - /// @param Partition Name - /// @param Blobs. - /// @param Number of blobs. + /// @param part_name partition Name + /// @param blob blos. + /// @param blob_sz n blobs (n * sizeof(blob_struct)). /// @retval True disk has been formatted. /// @retval False failed to format. template <typename BootDev> |
