浏览代码

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 (?, ?, ?, ?)"