Merge pull request #1384 from mattheww/2023-07_divzero-b

Operator expressions: make the note about division by zero clearer.
This commit is contained in:
Eric Huss 2023-07-20 04:11:53 +00:00 committed by GitHub
commit 5377523464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ The operands of all of these operators are evaluated in [value expression contex
\*\*\* Arithmetic right shift on signed integer types, logical right shift on
unsigned integer types.
Division by zero panics.
For integer types, division by zero panics.
Here are examples of these operators being used.