core: Fix a few docstrings

This commit is contained in:
Lioncash 2015-01-20 13:52:44 -05:00
parent cbbe9e1500
commit a3f5e5605c
4 changed files with 4 additions and 4 deletions

View file

@ -110,7 +110,7 @@ ResultCode GetConfigInfoBlock(u32 block_id, u32 size, u32 flag, u8* output);
* The config savegame file in the filesystem is not updated.
* @param block_id The id of the block we want to create
* @param size The size of the block we want to create
* @param flag The flags of the new block
* @param flags The flags of the new block
* @param data A pointer containing the data we will write to the new block
* @returns ResultCode indicating the result of the operation, 0 on success
*/

View file

@ -42,7 +42,7 @@ ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code, FileSys::Path& archi
/**
* Closes an archive
* @param id_code IdCode of the archive to open
* @param handle Handle to the archive to close
*/
ResultCode CloseArchive(ArchiveHandle handle);