소스 검색

correct output wording for resolved proposals

George C. Privon 5 년 전
부모
커밋
322f7907db
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      update_proposals.rkt

+ 1 - 1
update_proposals.rkt

@@ -107,7 +107,7 @@
 ; retrieve and print the proposals whose status are not listed as "submitted"
 (define (printclosed)
   (define finished (query-rows conn "SELECT ID,telescope,solicitation,title,PI FROM proposals WHERE status!='submitted'"))
-  (displayln (string-append (number->string (length finished)) " pending proposals found."))
+  (displayln (string-append (number->string (length finished)) " resolved proposals found."))
   (newline)
   ; print all the unresolved proposals to the screen
   (map printentry finished))