summaryrefslogtreecommitdiffhomepage
path: root/doc/guides/mrbgems.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/guides/mrbgems.md')
-rw-r--r--doc/guides/mrbgems.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md
index 88c5aedba..e67a260d1 100644
--- a/doc/guides/mrbgems.md
+++ b/doc/guides/mrbgems.md
@@ -273,7 +273,7 @@ mrbgems expects that you have implemented a C method called
by the name of your GEM. If you call your GEM `c_extension_example`, your
initialisation method could look like this:
-```C
+```c
void
mrb_c_extension_example_gem_init(mrb_state* mrb) {
struct RClass *class_cextension = mrb_define_module(mrb, "CExtension");
@@ -288,7 +288,7 @@ mrbgems expects that you have implemented a C method called
by the name of your GEM. If you call your GEM `c_extension_example`, your
finalizer method could look like this:
-```C
+```c
void
mrb_c_extension_example_gem_final(mrb_state* mrb) {
free(someone);