From 088f01bbe630996ca8cc6c6a09763b7362934f09 Mon Sep 17 00:00:00 2001 From: Edward Chernenko Date: Fri, 16 Oct 2015 00:07:55 +0300 Subject: [PATCH] Typo in comment of Html::radio() Incorrectly copied documentation from Html::check(). Change-Id: I508e4beedb01b62989a7f37466c47ddd37091b49 --- includes/Html.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Html.php b/includes/Html.php index 506b9cc3bf..b7958dd4a0 100644 --- a/includes/Html.php +++ b/includes/Html.php @@ -744,10 +744,10 @@ class Html { } /** - * Convenience function to produce a checkbox (input element with type=checkbox) + * Convenience function to produce a radio button (input element with type=radio) * * @param string $name Name attribute - * @param bool $checked Whether the checkbox is checked or not + * @param bool $checked Whether the radio button is checked or not * @param array $attribs Array of additional attributes * @return string Raw HTML */ -- 2.20.1