Skip to content
Snippets Groups Projects
Commit f763e230 authored by Lioncash's avatar Lioncash
Browse files

kernel/vm_manager: Correct doxygen comment parameter tags for MapPhysicalMemory/UnmapPhysicalMemory

Corrects the parameter names within the doxygen comments so that they
resolve properly.
parent b0da7e42
No related branches found
No related tags found
No related merge requests found
...@@ -454,8 +454,8 @@ public: ...@@ -454,8 +454,8 @@ public:
/// Maps memory at a given address. /// Maps memory at a given address.
/// ///
/// @param addr The virtual address to map memory at. /// @param target The virtual address to map memory at.
/// @param size The amount of memory to map. /// @param size The amount of memory to map.
/// ///
/// @note The destination address must lie within the Map region. /// @note The destination address must lie within the Map region.
/// ///
...@@ -468,8 +468,8 @@ public: ...@@ -468,8 +468,8 @@ public:
/// Unmaps memory at a given address. /// Unmaps memory at a given address.
/// ///
/// @param addr The virtual address to unmap memory at. /// @param target The virtual address to unmap memory at.
/// @param size The amount of memory to unmap. /// @param size The amount of memory to unmap.
/// ///
/// @note The destination address must lie within the Map region. /// @note The destination address must lie within the Map region.
/// ///
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment