diff options
-rw-r--r-- | error.c | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -201,14 +201,20 @@ rb_warning_category_enabled_p(rb_warning_category_t category) * Returns the flag to show the warning messages for +category+. * Supported categories are: * - * +:deprecated+ :: deprecation warnings - * * assignment of non-nil value to <code>$,</code> and <code>$;</code> - * * keyword arguments - * * proc/lambda without block - * etc. - * - * +:experimental+ :: experimental features - * * Pattern matching + * +:deprecated+ :: + * deprecation warnings + * * assignment of non-nil value to <code>$,</code> and <code>$;</code> + * * keyword arguments + * * proc/lambda without block + * etc. + * + * +:experimental+ :: + * experimental features + * * Pattern matching + * + * +:performance+ :: + * performance hints + * * Shape variation limit */ static VALUE |