Browse Source

fix promopt wording for updating predictions

George C. Privon 6 năm trước cách đây
mục cha
commit
8f0010e0e3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      code/update_predictions.rkt

+ 1 - 1
code/update_predictions.rkt

@@ -96,7 +96,7 @@
 ; add a new forecast to an existing prediction
 (define (reviseprediction ID)
   (define newf (string->number (getinput "What is your new predction")))
-  (define date (getinput "Enter the date of the outcome (YYYY-MM-DD or leave blank to use today's date)"))
+  (define date (getinput "Enter the date of the updated prediction (YYYY-MM-DD or leave blank to use today's date)"))
   (define newfdate (verify-or-get-date date))
   (define comments (getinput "Comments on the new prediction"))
   (query-exec conn "INSERT INTO predictions (ID, date, forecast, comments) values (?, ?, ?, ?)"