From de8a6fe787a8ea7a5e5880f8931b550fc3dede99 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sat, 13 Jul 2024 00:21:53 +1000 Subject: [PATCH] Fix spelling --- mrbgems/mruby-bigint/README-fgmp.md | 2 +- mrbgems/mruby-bigint/core/bigint.h | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c | 2 +- mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h | 2 +- mrbgems/mruby-catch/src/catch.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mrbgems/mruby-bigint/README-fgmp.md b/mrbgems/mruby-bigint/README-fgmp.md index 7693f3c1f..4df3035cc 100644 --- a/mrbgems/mruby-bigint/README-fgmp.md +++ b/mrbgems/mruby-bigint/README-fgmp.md @@ -46,7 +46,7 @@ Mark Henderson # This is the fifth BETA release. 1.0b5 -I hearby place this file and all of FGMP in the public domain. +I hereby place this file and all of FGMP in the public domain. Thanks to Paul Rouse for changes to get fgmp to work on a 286 MS-DOS compiler, the functions mpz_sqrt and diff --git a/mrbgems/mruby-bigint/core/bigint.h b/mrbgems/mruby-bigint/core/bigint.h index a9a4194fa..eda82c080 100644 --- a/mrbgems/mruby-bigint/core/bigint.h +++ b/mrbgems/mruby-bigint/core/bigint.h @@ -10,7 +10,7 @@ * FREE GMP - a public domain implementation of a subset of the * gmp library * - * I hearby place the file in the public domain. + * I hereby place the file in the public domain. * * Do whatever you want with this code. Change it. Sell it. Claim you * wrote it. diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c index 621bb4527..151c403b6 100644 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c @@ -26,7 +26,7 @@ #define BREAK_ERR_MSG_INVALIDARG "Internal error." #define BREAK_ERR_MSG_BLANK "Try \'help break\' for more information." #define BREAK_ERR_MSG_RANGEOVER "The line number range is from 1 to 65535." -#define BREAK_ERR_MSG_NUMOVER "Exceeded the setable number of breakpoint." +#define BREAK_ERR_MSG_NUMOVER "Exceeded the settable number of breakpoint." #define BREAK_ERR_MSG_NOOVER "Breakno is over the available number.Please 'quit' and restart mrdb." #define BREAK_ERR_MSG_INVALIDSTR "String \'%s\' is invalid.\n" #define BREAK_ERR_MSG_INVALIDLINENO "Line %d in file \"%s\" is unavailable.\n" diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h index 0cc36c8b7..a425a3b0f 100644 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h @@ -18,7 +18,7 @@ /* maximum size for command buffer */ #define MAX_COMMAND_LINE 1024 -/* maximum number of setable breakpoint */ +/* maximum number of settable breakpoint */ #define MAX_BREAKPOINT 5 #endif diff --git a/mrbgems/mruby-catch/src/catch.c b/mrbgems/mruby-catch/src/catch.c index 6e6a3102a..67db7f309 100644 --- a/mrbgems/mruby-catch/src/catch.c +++ b/mrbgems/mruby-catch/src/catch.c @@ -45,7 +45,7 @@ static const struct RProc catch_proc = { static uintptr_t find_catcher(mrb_state *mrb, mrb_value tag) { - const mrb_callinfo *ci = mrb->c->ci - 1; // skip ownself throw + const mrb_callinfo *ci = mrb->c->ci - 1; // skip oneself throw ptrdiff_t n = ci - mrb->c->cibase; for (; n > 0; n--, ci--) {