From 300f4677c93fb7ce312bba27e50b0af51ce8ba2e Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 26 Mar 2022 21:07:06 +0900 Subject: [DOC] Use simple references to operator methods Method references is not only able to be marked up as code, also reflects `--show-hash` option. The bug that prevented the old rdoc from correctly parsing these methods was fixed last month. --- hash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index 27b4390345..da85fd35c6 100644 --- a/hash.c +++ b/hash.c @@ -7063,11 +7063,11 @@ static const rb_data_type_t env_data_type = { * * ==== Methods for Comparing * - * - {<}[#method-i-3C]: Returns whether +self+ is a proper subset of a given object. - * - {<=}[#method-i-3C-3D]: Returns whether +self+ is a subset of a given object. + * - #<: Returns whether +self+ is a proper subset of a given object. + * - #<=: Returns whether +self+ is a subset of a given object. * - #==: Returns whether a given object is equal to +self+. - * - {>}[#method-i-3E]: Returns whether +self+ is a proper superset of a given object - * - {>=}[#method-i-3E-3D]: Returns whether +self+ is a proper superset of a given object. + * - #>: Returns whether +self+ is a proper superset of a given object + * - #>=: Returns whether +self+ is a proper superset of a given object. * * ==== Methods for Fetching * -- cgit v1.2.1