Skip to content

Commit

Permalink
Prepare RFC 0009 simple expressions for merging
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-schwarz committed May 2, 2023
1 parent 0ef1f3a commit da0b46e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rfc/0009-expressions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only
| | |
|---|---|
| Feature Tag | `Simple Expressions` |
| Status | `DRAFT` | <!-- Possible values: DRAFT, DISCUSSION, ACCEPTED, REJECTED -->
| Status | `ACCEPTED` | <!-- Possible values: DRAFT, DISCUSSION, ACCEPTED, REJECTED -->
| Responsible | `georg-schwarz` | <!-- TODO: assign yourself as main driver of this RFC -->
<!--
Status Overview:
Expand Down Expand Up @@ -40,7 +40,7 @@ The following operators are in descending order by their precedence:

When operators of similar precedence don't determine the order, we evaluate from left to right.

#### Unary Prefix Operatory
#### Unary Prefix Operator
Binary prefix operators follow the pattern `<operator> <operand>`. Parentheses can be used for grouping larger sub-expressions.
The following operators share the same precedence:
- `floor`, `ceil`, `round` for conversion of decimal numbers to integers.
Expand Down Expand Up @@ -71,7 +71,7 @@ Division operator and multiplication/addition/subtraction with at least one deci

Division by zero throws an error.

Comparison of different number types (e.g., integers and decimals) is solved by converting first to the less restrictive value type (in the example, to decimals). A warning is logged in these cases.
Comparison of different number types (e.g., integers and decimals) is solved by converting first to the less restrictive value type (in the example, to decimals).

### Handling of texts

Expand Down

0 comments on commit da0b46e

Please sign in to comment.