From f92ade9ad532a50dbcfab4ff0e666252d40e5c54 Mon Sep 17 00:00:00 2001 From: zohairawan <35776095+zohairawan@users.noreply.github.com> Date: Thu, 3 Jul 2025 04:22:03 -0700 Subject: [PATCH] Change 4.1 to -4.1 --- src/floating_point_numbers/subtraction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/floating_point_numbers/subtraction.md b/src/floating_point_numbers/subtraction.md index cc89f7b..6f4df8c 100644 --- a/src/floating_point_numbers/subtraction.md +++ b/src/floating_point_numbers/subtraction.md @@ -18,7 +18,7 @@ Because of the previously mentioned inaccuracy, the results of subtractions migh ```java ~void main() { ~double x = 5.1; -~// y will be 4.1 +~// y will be -4.1 ~double y = x - 9.2; // z will be -4.199999999999999 double z = y - 0.1;