about summary refs log tree commit diff
path: root/Src/mem.c
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2002-08-05 12:35:59 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2002-08-05 12:35:59 +0000
commitaf0697b70533b6e40c92180a7523c16cf49798e9 (patch)
tree07c26a527bd6b6670c75f729915888031900993b /Src/mem.c
parented89700265c129983a6badca26b35eb62bb5dd70 (diff)
downloadzsh-af0697b70533b6e40c92180a7523c16cf49798e9.tar.gz
zsh-af0697b70533b6e40c92180a7523c16cf49798e9.tar.xz
zsh-af0697b70533b6e40c92180a7523c16cf49798e9.zip
17503: fix various typos and spelling mistakes in source code comments
Diffstat (limited to 'Src/mem.c')
-rw-r--r--Src/mem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/mem.c b/Src/mem.c
index 9f88dddaa..67b4624d9 100644
--- a/Src/mem.c
+++ b/Src/mem.c
@@ -693,7 +693,7 @@ static char *m_high, *m_low;
    size of the small blocks held in a memory block, given a pointer to the
    header of it.  M_SBLEN() gives the size of a memory block that can hold
    an array of small blocks, given the size of these small blocks.  M_BSLEN()
-   caculates the size of the small blocks held in a memory block, given the
+   calculates the size of the small blocks held in a memory block, given the
    length of that block (including the header of the memory block.  M_NSMALL
    is the number of possible block sizes that small blocks should be used
    for. */
@@ -1286,7 +1286,7 @@ bin_mem(char *name, char **argv, char *ops, int func)
 	printf("\nThe list of memory blocks. For each block the following\n");
 	printf("information is shown:\n\n");
 	printf("num\tthe number of this block\n");
-	printf("tnum\tlike num but counted separatedly for used and free\n");
+	printf("tnum\tlike num but counted separately for used and free\n");
 	printf("\tblocks\n");
 	printf("addr\tthe address of this block\n");
 	printf("len\tthe length of the block\n");
@@ -1295,7 +1295,7 @@ bin_mem(char *name, char **argv, char *ops, int func)
 	printf("\t  free\tthis block is free\n");
 	printf("\t  small\tthis block is used for an array of small blocks\n");
 	printf("cum\tthe accumulated sizes of the blocks, counted\n");
-	printf("\tseparatedly for used and free blocks\n");
+	printf("\tseparately for used and free blocks\n");
 	printf("\nFor blocks holding small blocks the number of free\n");
 	printf("blocks, the number of used blocks and the size of the\n");
 	printf("blocks is shown. For otherwise used blocks the first few\n");