# New Ticket Created by Bram Geron # Please include the string: [perl #43531] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=43531 >
Hi everyone, Here again some minor clearups. Thanks, -- Bram Geron | GPG 0xE7B9E65E
diff --git a/include/parrot/interpreter.h b/include/parrot/interpreter.h index 8373081..ed5f2ed 100644 --- a/include/parrot/interpreter.h +++ b/include/parrot/interpreter.h @@ -284,7 +284,7 @@ typedef struct _context_mem { char *threshold; /* continuation threshold */ struct _context_mem *prev; /* previous allocated area */ #else - void **free_list; /* per size free slots */ + void **free_list; /* array of free-lists, per size free slots */ int n_free_slots; /* amount of allocated */ #endif @@ -313,7 +313,7 @@ struct parrot_interp_t { size_t op_count; /* The number of ops */ op_info_t *op_info_table; /* Opcode info table (name, nargs, arg types) */ - op_func_t *op_func_table; /* opcode dispatch table (functios, labels, + op_func_t *op_func_table; /* opcode dispatch table (functions, labels, * or nothing (e.g. switched core), which * the interpreter is currently running */ op_func_t *evc_func_table; /* opcode dispatch for event checking */ diff --git a/src/inter_call.c b/src/inter_call.c index 4461547..bece62d 100644 --- a/src/inter_call.c +++ b/src/inter_call.c @@ -1186,7 +1186,7 @@ parrot_pass_args(Interp *interp /*NN*/, parrot_context_t *src_ctx /*NN*/, parrot FUNCDOC: parrot_pass_args_fromc Pass arguments from C code with given signature to a Parrot Sub. -Prerequsits are like above. +Prerequisites are like above. */ diff --git a/src/packfile.c b/src/packfile.c index f172c5d..3a2918a 100644 --- a/src/packfile.c +++ b/src/packfile.c @@ -794,7 +794,7 @@ PackFile_map_segments(Interp *interp, PackFile_Directory *dir /*NN*/, FUNCDOC: PackFile_add_segment Adds the Segment C<seg> to the directory C<dir> The PackFile becomes the -owner of the segment; that means its getting destroyed, when the +owner of the segment; that means it's getting destroyed, when the packfile gets destroyed. */