Преглед на файлове

fix promopt wording for updating predictions

George C. Privon преди 6 години
родител
ревизия
8f0010e0e3
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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 (?, ?, ?, ?)"