From 748dac999d3e6bd1a762133c91b31826a8dd772b Mon Sep 17 00:00:00 2001 From: James McClanahan Date: Sat, 2 Mar 2024 16:13:16 -0500 Subject: [PATCH] Update README.md Correct typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index efa7920..3d793b0 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Here we get a glimpse of what is going on. There is no error in line 30 when we If we delete line 35 (the print statement) and run it again, we can see that the value of -32,768 is calculated and there is no error message. -So there the value -32,768 was not excluded on a whim. The limit of -32,767 is the result of how the unary negation operator interacts with the magnitude of the number in certain situations. +So the value -32,768 was not excluded on a whim. The limit of -32,767 is the result of how the unary negation operator interacts with the magnitude of the number in certain situations. ## Error Messages