From 2d937768211355c2d0cc7a6bf54545295f710950 Mon Sep 17 00:00:00 2001 From: Tahmid Chowdhury <32552650+tahmid-chowdhury@users.noreply.github.com> Date: Sat, 19 Sep 2026 17:33:23 -0400 Subject: [PATCH] Fix output message and improve explanation clarity Corrected the output message to use 'Your' instead of 'You're'. Added a comma for clarity in the explanation. --- src/standard_input/floating_point_numbers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/standard_input/floating_point_numbers.md b/src/standard_input/floating_point_numbers.md index 7780a990..c21c2fec 100644 --- a/src/standard_input/floating_point_numbers.md +++ b/src/standard_input/floating_point_numbers.md @@ -7,9 +7,9 @@ you get from `IO.readln` into a `double` using `Double.parseDouble`. void main() { String gpaString = IO.readln("What is your GPA? "); double gpa = Double.parseDouble(gpaString); - IO.println("You're GPA is " + gpa); + IO.println("Your GPA is " + gpa); } ``` So long as they type something which can be interpreted as a `double` (like `123` or `14.5`) -you will get a value for the `double` variable. Otherwise the program will crash. \ No newline at end of file +you will get a value for the `double` variable. Otherwise, the program will crash.