diff mbox

docs/website: add a space between attributes

Message ID 1441631314-47198-1-git-send-email-Vincent.Riera@imgtec.com
State Accepted
Commit 476b674824ebc22dd63664e8810989f6fe8b295d
Headers show

Commit Message

Vicente Olivert Riera Sept. 7, 2015, 1:08 p.m. UTC
Error highlighted by the W3 HTML validator:

Error: No space between attributes.
At line 71, column 64
e="width:100%;"href="/download

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 docs/website/index.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Peter Korsgaard Sept. 7, 2015, 9:53 p.m. UTC | #1
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > Error highlighted by the W3 HTML validator:
 > Error: No space between attributes.
 > At line 71, column 64
 > e="width:100%;"href="/download

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Committed, thanks.
diff mbox

Patch

diff --git a/docs/website/index.html b/docs/website/index.html
index 36075bc..c6882fb 100644
--- a/docs/website/index.html
+++ b/docs/website/index.html
@@ -19,7 +19,7 @@ 
           <a class="btn btn-primary btn-lg" style="width:100%;" href="/about.html"><span class="glyphicon glyphicon-info-sign"></span> Learn more »</a>
           </div>
           <div class="col-sm-6" style="margin-top:1em; padding-left:0px;">
-          <a class="btn btn-primary btn-lg" style="width:100%;"href="/download.html"><span class="glyphicon glyphicon-cloud-download"></span> Download »</a>
+          <a class="btn btn-primary btn-lg" style="width:100%;" href="/download.html"><span class="glyphicon glyphicon-cloud-download"></span> Download »</a>
           </div>
         </div>
       </div>