From 90678f30b1cab97ce05698b2723e0125c5c0e0e3 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Thu, 22 Mar 2012 01:07:06 +0200 Subject: [PATCH] A little fix in whitespace and comment spelling. Change-Id: I23887de1a5ee454037b6346c767e302f2e6f02f7 --- includes/HTMLForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index 3b3e1b692d..dccf96766a 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -271,7 +271,7 @@ class HTMLForm extends ContextSource { /** * The here's-one-I-made-earlier option: do the submission if - * posted, or display the form with or without funky valiation + * posted, or display the form with or without funky validation * errors * @return Bool or Status whether submission was successful. */ @@ -279,7 +279,7 @@ class HTMLForm extends ContextSource { $this->prepareForm(); $result = $this->tryAuthorizedSubmit(); - if ( $result === true || ( $result instanceof Status && $result->isGood() ) ){ + if ( $result === true || ( $result instanceof Status && $result->isGood() ) ) { return $result; } -- 2.20.1