diff options
author | Hexxellor | 2017-03-28 15:32:26 -0500 |
---|---|---|
committer | devnoname120 | 2017-03-28 22:32:26 +0200 |
commit | 5568baf51c4b787ff3ce338948bc6faed34c2320 (patch) | |
tree | 3452914d79092392b496b0611bdccf3f67a4b818 /include/user/kernel/sysmem.h | |
parent | Added 3 SceSysclibForDriver NIDs (diff) | |
download | vds-libraries-5568baf51c4b787ff3ce338948bc6faed34c2320.tar.gz |
Typo fixing, and misnamed struct (#151)
* Fixing Mostly Harmless Typos
This fixes a bunch of miscellaneous typos and grammatical mistakes in
the source which were mostly harmless with the exception of the
ScreenShotParam in psp2/screenshot.h which didn’t match the name of the
struct causing it to fail when using that header.
Diffstat (limited to 'include/user/kernel/sysmem.h')
-rw-r--r-- | include/user/kernel/sysmem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/user/kernel/sysmem.h b/include/user/kernel/sysmem.h index 4dd4884..c517210 100644 --- a/include/user/kernel/sysmem.h +++ b/include/user/kernel/sysmem.h @@ -33,7 +33,7 @@ enum { }; /*** - * Allocates a new memoy block + * Allocates a new memory block * * @param[in] name - Name for the memory block * @param[in] type - Type of the memory to allocate @@ -45,7 +45,7 @@ enum { SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int size, SceKernelAllocMemBlockOpt *optp); /*** - * Frees new memoy block + * Frees new memory block * * @param[in] uid - SceUID of the memory block to free * @@ -54,7 +54,7 @@ SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int int sceKernelFreeMemBlock(SceUID uid); /*** - * Gets the base address of a memoy block + * Gets the base address of a memory block * * @param[in] uid - SceUID of the memory block to free * @param[out] basep - Base address of the memory block identified by SceUID |