From fa21bb437b34faed0e23d39305578d99cad4d7b8 Mon Sep 17 00:00:00 2001 From: rgrjr Date: Wed, 4 Jul 2007 18:39:29 +0000 Subject: [PATCH] * include/parrot/interpreter.h: * src/inter_call.c: * src/packfile.c: + Typos caught by Bram Geron, RT #43531. git-svn-id: https://svn.perl.org/parrot/trunk@19584 d31e2699-5ff4-0310-a27c-f18f2fbe73fe --- include/parrot/interpreter.h | 4 ++-- src/inter_call.c | 2 +- src/packfile.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/parrot/interpreter.h b/include/parrot/interpreter.h index 837308141c..ed5f2edb64 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 4461547601..bece62dba1 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 f172c5d111..3a2918ac74 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 to the directory C 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. */ -- 2.11.4.GIT