From a340fe20e97a6184d076fce277f98d613497e8ca Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Mon, 8 Jun 2020 12:30:33 +0200 Subject: [PATCH] Fix method name in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is no addMetaLink() method; I assume it’s meant to be addMeta(). Change-Id: I4f59d5dd96d3a59522fbc7cf38badc93698e29fa --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 5a168c74d54..272c566c70e 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -658,7 +658,7 @@ class OutputPage extends ContextSource { * Add or replace a head item to the output * * Whenever possible, use more specific options like ResourceLoader modules, - * OutputPage::addLink(), OutputPage::addMetaLink() and OutputPage::addFeedLink() + * OutputPage::addLink(), OutputPage::addMeta() and OutputPage::addFeedLink() * Fallback options for those are: OutputPage::addStyle, OutputPage::addScript(), * OutputPage::addInlineScript() and OutputPage::addInlineStyle() * This would be your very LAST fallback.