summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSeba Gamboa <[email protected]>2015-09-28 19:02:05 -0300
committerSeba Gamboa <[email protected]>2015-10-08 12:29:10 -0300
commit554406b987bde19f25aef2adbc1431d8f30f9871 (patch)
tree00c2dcac76c9785e00a03ab769d71cbe8fa66353
parent76f24d2182449038ace3d0c414f657e6253fdf02 (diff)
downloadmruby-554406b987bde19f25aef2adbc1431d8f30f9871.tar.gz
mruby-554406b987bde19f25aef2adbc1431d8f30f9871.zip
Testing @see tag
-rw-r--r--include/mruby.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 6d34b241c..3d91b2f51 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -279,12 +279,12 @@ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*);
* Number of arguments in argv
* @param argv
* Array of @ref mrb_value "mrb_values" to initialize the object
- * @returns
+ * @return
* The newly initialized object
*/
MRB_API mrb_value mrb_obj_new(mrb_state *mrb, struct RClass *c, mrb_int argc, const mrb_value *argv);
-/** See @ref mrb_obj_new */
+/** @see mrb_obj_new */
MRB_INLINE mrb_value mrb_class_new_instance(mrb_state *mrb, mrb_int argc, const mrb_value *argv, struct RClass *c)
{
return mrb_obj_new(mrb,c,argc,argv);
@@ -469,7 +469,7 @@ char* mrb_locale_from_utf8(const char *p, size_t len);
/**
* Creates new mrb_state.
*
- * @returns
+ * @return
* Pointer to the newly created mrb_state.
*/
MRB_API mrb_state* mrb_open(void);
@@ -482,7 +482,7 @@ MRB_API mrb_state* mrb_open(void);
* @param ud
* User data will be passed to custom allocator f.
* If user data isn't required just pass NULL.
- * @returns
+ * @return
* Pointer to the newly created mrb_state.
*/
MRB_API mrb_state* mrb_open_allocf(mrb_allocf f, void *ud);
@@ -496,7 +496,7 @@ MRB_API mrb_state* mrb_open_allocf(mrb_allocf f, void *ud);
* @param ud
* User data will be passed to custom allocator f.
* If user data isn't required just pass NULL.
- * @returns
+ * @return
* Pointer to the newly created mrb_state.
*/
MRB_API mrb_state* mrb_open_core(mrb_allocf f, void *ud);