summaryrefslogtreecommitdiff
path: root/include/user/kernel/sysmem.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/user/kernel/sysmem.h6
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