Update README.md

Correct typo
This commit is contained in:
James McClanahan 2024-03-02 16:13:16 -05:00 committed by GitHub
parent 61f579bd10
commit 748dac999d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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