From b3cb0ba781c7fa54d12051f649df82c313945b8a Mon Sep 17 00:00:00 2001 From: "Y. Huang" Date: Tue, 26 Nov 2019 22:21:11 -0500 Subject: [PATCH] typo fix in code comment --- lab3/starter/shm/shm_stack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lab3/starter/shm/shm_stack.c b/lab3/starter/shm/shm_stack.c index afd9b560..ddaedc35 100644 --- a/lab3/starter/shm/shm_stack.c +++ b/lab3/starter/shm/shm_stack.c @@ -149,7 +149,7 @@ int is_empty(ISTACK *p) } /** - * @brief push one ineger onto the stack + * @brief push one integer onto the stack * @param ISTACK *p the address of the ISTACK data structure * @param int item the integer to be pushed onto the stack * @return 0 on success; non-zero otherwise @@ -171,7 +171,7 @@ int push(ISTACK *p, int item) } /** - * @brief push one ineger onto the stack + * @brief push one integer onto the stack * @param ISTACK *p the address of the ISTACK data structure * @param int *item output parameter to save the integer value * that pops off the stack