From 5568baf51c4b787ff3ce338948bc6faed34c2320 Mon Sep 17 00:00:00 2001 From: Hexxellor Date: Tue, 28 Mar 2017 15:32:26 -0500 Subject: 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.--- include/user/kernel/sysmem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/user/kernel/sysmem.h') 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 -- cgit v1.2.3