Skip to content

Commit

Permalink
Fix some typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Feb 9, 2024
1 parent d38b724 commit 8761d7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ code. The cache algorithm also uses his ideas.
The regular expression matcher used by Coldmud (regexp.c) was written by
Henry Spencer.

Numerous people have contributed valuble ideas and debugging effort. Among
Numerous people have contributed valuable ideas and debugging effort. Among
them are Jay Carlson, Erik Ostrom, Matthew Rhoten, Loyd Blankenship, Gregory
Blake, Jeff Prothero, Nils McCarthy, Brandon Gillespie, Ron Strait, Alex
Stewart, Jordan Baker, Ryan Daum, Doug Orleans, Matthew Gray, and Scott
Expand Down
2 changes: 1 addition & 1 deletion src/include/codegen.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Expr * expr_message_expr(Expr * to, Expr * message, Expr_list * args);
Expr * list_expr(Expr_list * args);
Expr * dict_expr(Expr_list * args);
Expr * buffer_expr(Expr_list * args);
Expr * frob_expr(Expr * cclass, Expr * rep, Expr *hander);
Expr * frob_expr(Expr * cclass, Expr * rep, Expr *handler);
Expr * index_expr(Expr * list, Expr * offset);
Expr * unary_expr(Int opcode, Expr * expr);
Expr * binary_expr(Int opcode, Expr * left, Expr * right);
Expand Down
2 changes: 1 addition & 1 deletion src/textdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void cleanup_holders(void) {
}
}

/* only call with a method which declars a MF_NATIVE flag */
/* only call with a method which declares a MF_NATIVE flag */
/* holders are redundant, but it lets us keep track of methods defined
native, but which are not */
static nh_t * find_defined_native_method(cObjnum objnum, Ident name) {
Expand Down

0 comments on commit 8761d7b

Please sign in to comment.