From 93400df33d089933f36e684d89b7407e1063c94a Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Wed, 21 May 2014 11:30:20 -0600 Subject: [PATCH] typo --- pkgs/plt-services/meta/drdr/render.rkt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/plt-services/meta/drdr/render.rkt b/pkgs/plt-services/meta/drdr/render.rkt index a275826195..0bf386b117 100644 --- a/pkgs/plt-services/meta/drdr/render.rkt +++ b/pkgs/plt-services/meta/drdr/render.rkt @@ -382,16 +382,17 @@ `(span ([class "commandline"]) ,s)) command-line) " "))) - (tr (td "Duration:") (td ,(format-duration-ms dur) - nbsp (a ([href ,(format "/data~a" (path-add-suffix the-base-path #".timing"))]) - "(timing data)"))) + (tr (td "Duration:") + (td ,(format-duration-ms dur) + nbsp (a ([href ,(format "/data~a" (path-add-suffix the-base-path #".timing"))]) + "(timing data)"))) (tr (td "Timeout:") (td ,(if (timeout? log) checkmark-entity ""))) (tr (td "Exit Code:") (td ,(if (exit? log) (number->string (exit-code log)) ""))) (tr (td " ") (td (a ([href ,scm-url]) "View File")))) ,(if (lc-zero? changed) "" `(div ([class "error"]) - "This result of executing this file has changed since the previous push." + "The result of executing this file has changed since the previous push." " " (a ([href ,(format "/diff/~a/~a~a" (previous-rev) (current-rev) the-base-path)]) "See the difference")))