diff --git a/clanki.cabal b/clanki.cabal
--- a/clanki.cabal
+++ b/clanki.cabal
@@ -2,7 +2,7 @@
 --  see http://haskell.org/cabal/users-guide/
 
 name:                clanki
-version:             1.0.3
+version:             1.0.4
 synopsis:            Command-line spaced-repetition software
 description:         Command-line spaced-repetition learning software. CL (command line) + Anki (popular spaced-repetition software) = Clanki. Usage is fairly simple, just follow the instructions after running the program. Add a deck, add cards to the deck, then quiz whenever possible. The program will determine what cards need to be reviewed, using the Super Memo 2 algorithm.
 license:             MIT
diff --git a/src/Quiz.hs b/src/Quiz.hs
--- a/src/Quiz.hs
+++ b/src/Quiz.hs
@@ -64,7 +64,7 @@
     printf "Input your answer, then press enter to continue\n"
     _ <- getLine
     --printf $ "Answer : " ++ cardAnswer card ++ "\n"
-    printf "Did you get it right?\n"
+    printf $ "Rate your answer, 0-5" ++ "\n"
     confidence <- getAnswerConfidence
     let newEF = adjustEF (ctEF $ cardTracker card) confidence
     let oldTracker = cardTracker card
