Fix some typos

This commit is contained in:
Jay McCarthy 2014-09-08 21:32:29 -04:00
parent 891db224a0
commit 8fb3e3b6eb
2 changed files with 7 additions and 7 deletions

View File

@ -255,17 +255,17 @@
[pb-docs (pbl 'docs)]
[st (if (and pb-docs (cons? pb-docs)
(andmap (λ (d)
(or (doc/main? pb-docs)
(doc/extract? pb-docs)
(doc/salvage? pb-docs)))
(or (doc/main? d)
(doc/extract? d)
(doc/salvage? d)))
pb-docs))
(hash-set st ':docs: #t)
st)]
[st (if (and pb-docs (cons? pb-docs)
(andmap (λ (d)
(or (doc/extract? pb-docs)
(doc/salvage? pb-docs)
(doc/none? pb-docs)))
(or (doc/extract? d)
(doc/salvage? d)
(doc/none? d)))
pb-docs))
(hash-set st ':docs-error: #t)
st)])

View File

@ -443,7 +443,7 @@ $( document ).ready(function() {
.append($('<span>')
.append($('<a>', { href: build_host + value['build']['failure-log'] }).html( "fails" )));
} else if ( value['build']['success-log'] && value['build']['dep-failure-log'] ) {
bstatus = $('<td>', {class: 'build_red'})
bstatus = $('<td>', {class: 'build_yellow'})
.append($('<span>')
.append($('<a>', { href: build_host + value['build']['success-log'] }).html( "succeeds" ))
.append(" with ")