Fix typos and indent
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
22224a45df
commit
135204eb38
8
object.c
8
object.c
@ -60,7 +60,7 @@ VALUE rb_cFalseClass; /*!< FalseClass class */
|
|||||||
* Make the object invisible from Ruby code.
|
* Make the object invisible from Ruby code.
|
||||||
*
|
*
|
||||||
* It is useful to let Ruby's GC manage your internal data structure --
|
* It is useful to let Ruby's GC manage your internal data structure --
|
||||||
* The object keeps being managed by GC, but \c ObjectSpace#each_objects
|
* The object keeps being managed by GC, but \c ObjectSpace.each_object
|
||||||
* never yields the object.
|
* never yields the object.
|
||||||
*
|
*
|
||||||
* Note that the object also lose a way to call a method on it.
|
* Note that the object also lose a way to call a method on it.
|
||||||
@ -245,7 +245,7 @@ rb_obj_not_equal(VALUE obj1, VALUE obj2)
|
|||||||
* It returns the \a cl itself if it is neither a singleton class or a module.
|
* It returns the \a cl itself if it is neither a singleton class or a module.
|
||||||
*
|
*
|
||||||
* \param[in] cl a Class object.
|
* \param[in] cl a Class object.
|
||||||
* \return the ancestor class found, or a falsthy vaule if nothing found.
|
* \return the ancestor class found, or a falsey value if nothing found.
|
||||||
*/
|
*/
|
||||||
VALUE
|
VALUE
|
||||||
rb_class_real(VALUE cl)
|
rb_class_real(VALUE cl)
|
||||||
@ -581,7 +581,7 @@ rb_obj_yield_self(VALUE obj)
|
|||||||
/**
|
/**
|
||||||
* :nodoc:
|
* :nodoc:
|
||||||
*--
|
*--
|
||||||
* Default implemenentation of \c #initialize_copy
|
* Default implementation of \c #initialize_copy
|
||||||
* \param[in,out] obj the receiver being initialized
|
* \param[in,out] obj the receiver being initialized
|
||||||
* \param[in] orig the object to be copied from.
|
* \param[in] orig the object to be copied from.
|
||||||
*++
|
*++
|
||||||
@ -642,7 +642,7 @@ rb_any_to_s(VALUE obj)
|
|||||||
VALUE rb_str_escape(VALUE str);
|
VALUE rb_str_escape(VALUE str);
|
||||||
/*!
|
/*!
|
||||||
* Convenient wrapper of \c Object#inspect.
|
* Convenient wrapper of \c Object#inspect.
|
||||||
* Returns a human-readable strng representation of \a obj,
|
* Returns a human-readable string representation of \a obj,
|
||||||
* similarly to \c Object#inspect.
|
* similarly to \c Object#inspect.
|
||||||
*
|
*
|
||||||
* Unlike Ruby-level \c #inspect, it escapes characters to keep the
|
* Unlike Ruby-level \c #inspect, it escapes characters to keep the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user