From bf38bb43da29d4a84e33c0615f0cda0c9803c37d Mon Sep 17 00:00:00 2001 From: Edwin Garcia Date: Mon, 22 Jan 2024 03:53:40 -0600 Subject: [PATCH] docs: fix typo Signed-off-by: Edwin Garcia --- EN/2_mri_structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EN/2_mri_structure.md b/EN/2_mri_structure.md index 53a18b1..82a6dd1 100644 --- a/EN/2_mri_structure.md +++ b/EN/2_mri_structure.md @@ -107,7 +107,7 @@ If you want to run the "normal" Ruby, which can load extension libraries, you ca NOTE: Running `gdb` on macOS can be quite difficult. The following commands assume a Linux environment. -When modifying the MRI source code, you can easily introduces critical problems that result in a SEGV. To debug such problems, we provide Makefile rules to support debugging with gdb. Of course, you can also debug with break points. +When modifying the MRI source code, you can easily introduce critical problems that result in a SEGV. To debug such problems, we provide Makefile rules to support debugging with gdb. Of course, you can also debug with break points. 1. Write in `ruby/test.rb` what you want to check. Note that you can't use gems or extension libraries in `test.rb`. 3. Invoke `$ make gdb` to run miniruby with gdb. If there are no problems, gdb finishes silently.