summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorDaniel Dragan <bulk88@hotmail.com>2016-02-11 05:48:58 -0500
committerTony Cook <tony@develop-help.com>2016-02-16 10:46:45 +1100
commite42a763ce995f992cba5e79089f7898234887b55 (patch)
tree61971bad554239e522a9a0ed71efa4e77428b57b /scope.h
parent6ea11d8cdaa70c00dfcd58674da3c7f24266bbae (diff)
downloadperl-e42a763ce995f992cba5e79089f7898234887b55.tar.gz
minor comment improvements in hv.h and scope.h
-perl doesn't use malloc, it uses Newx (per interp memory) -say what the return type is of SSNEW
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.h b/scope.h
index 1de27abdaa..9a504f1bfd 100644
--- a/scope.h
+++ b/scope.h
@@ -310,7 +310,7 @@ scope has the given name. C<name> must be a C<NUL>-terminated literal string.
#define SAVECOPLINE(c) SAVEI32(CopLINE(c))
/* SSNEW() temporarily allocates a specified number of bytes of data on the
- * savestack. It returns an integer index into the savestack, because a
+ * savestack. It returns an I32 index into the savestack, because a
* pointer would get broken if the savestack is moved on reallocation.
* SSNEWa() works like SSNEW(), but also aligns the data to the specified
* number of bytes. MEM_ALIGNBYTES is perhaps the most useful. The