From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 79E5920756 for ; Fri, 20 Jan 2017 22:36:11 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] oldweb/class: add space before superclass method name Date: Fri, 20 Jan 2017 22:36:11 +0000 Message-Id: <20170120223611.26972-1-e@80x24.org> List-Id: This fixes the formatting of the "Calls superclass method" phrase. --- lib/oldweb/class.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oldweb/class.rhtml b/lib/oldweb/class.rhtml index 9f8aec3..07e6791 100644 --- a/lib/oldweb/class.rhtml +++ b/lib/oldweb/class.rhtml @@ -46,7 +46,7 @@ id="<%= visibility %>-<%= type %>-<%= section.aref %>-method-details"> seq ? " #{h(seq.strip)}" : "" %><% end %> <%= method_srclink(method) %><%= method.comment ? method.description.strip : nd %><% - if method.calls_super %>Calls superclass method<%= + if method.calls_super %>Calls superclass method <%= method.superclass_method ? method.formatter.link(method.superclass_method.full_name, method.superclass_method.full_name) : nil -- EW