|
139 | 139 | #endif |
140 | 140 |
|
141 | 141 | /** |
142 | | - * MRuby C API entry point |
| 142 | + * mruby C API entry point |
143 | 143 | */ |
144 | 144 | MRB_BEGIN_DECL |
145 | 145 |
|
@@ -420,7 +420,7 @@ MRB_API void mrb_prepend_module(mrb_state *mrb, struct RClass *cla, struct RClas |
420 | 420 | * mrb_define_method(mrb, mrb->kernel_module, "example_method", example_method, MRB_ARGS_NONE()); |
421 | 421 | * } |
422 | 422 | * |
423 | | - * @param mrb The MRuby state reference. |
| 423 | + * @param mrb The mruby state reference. |
424 | 424 | * @param cla The class pointer where the method will be defined. |
425 | 425 | * @param name The name of the method being defined. |
426 | 426 | * @param func The function pointer to the method definition. |
@@ -448,7 +448,7 @@ MRB_API void mrb_define_method_id(mrb_state *mrb, struct RClass *c, mrb_sym mid, |
448 | 448 | * foo = mrb_define_class(mrb, "Foo", mrb->object_class); |
449 | 449 | * mrb_define_class_method(mrb, foo, "bar", bar_method, MRB_ARGS_NONE()); |
450 | 450 | * } |
451 | | - * @param mrb The MRuby state reference. |
| 451 | + * @param mrb The mruby state reference. |
452 | 452 | * @param cla The class where the class method will be defined. |
453 | 453 | * @param name The name of the class method being defined. |
454 | 454 | * @param fun The function pointer to the class method definition. |
@@ -484,7 +484,7 @@ MRB_API void mrb_define_singleton_method_id(mrb_state *mrb, struct RObject *cla, |
484 | 484 | * foo = mrb_define_module(mrb, "Foo"); |
485 | 485 | * mrb_define_module_function(mrb, foo, "bar", bar_method, MRB_ARGS_NONE()); |
486 | 486 | * } |
487 | | - * @param mrb The MRuby state reference. |
| 487 | + * @param mrb The mruby state reference. |
488 | 488 | * @param cla The module where the module function will be defined. |
489 | 489 | * @param name The name of the module function being defined. |
490 | 490 | * @param fun The function pointer to the module function definition. |
@@ -514,7 +514,7 @@ MRB_API void mrb_define_module_function_id(mrb_state *mrb, struct RClass *cla, m |
514 | 514 | * mrb_value |
515 | 515 | * mrb_example_gem_final(mrb_state* mrb){ |
516 | 516 | * } |
517 | | - * @param mrb The MRuby state reference. |
| 517 | + * @param mrb The mruby state reference. |
518 | 518 | * @param cla A class or module the constant is defined in. |
519 | 519 | * @param name The name of the constant being defined. |
520 | 520 | * @param val The value for the constant. |
@@ -1017,7 +1017,7 @@ struct mrb_kwargs |
1017 | 1017 | /** |
1018 | 1018 | * Retrieve arguments from mrb_state. |
1019 | 1019 | * |
1020 | | - * @param mrb The current MRuby state. |
| 1020 | + * @param mrb The current mruby state. |
1021 | 1021 | * @param format is a list of format specifiers |
1022 | 1022 | * @param ... The passing variadic arguments must be a pointer of retrieving type. |
1023 | 1023 | * @return the number of arguments retrieved. |
@@ -1248,7 +1248,7 @@ MRB_API mrb_state* mrb_open(void); |
1248 | 1248 | MRB_API mrb_state* mrb_open_allocf(mrb_allocf f, void *ud); |
1249 | 1249 |
|
1250 | 1250 | /** |
1251 | | - * Create new mrb_state with just the MRuby core |
| 1251 | + * Create new mrb_state with just the mruby core |
1252 | 1252 | * |
1253 | 1253 | * @param f |
1254 | 1254 | * Reference to the allocation function. |
|
0 commit comments