Skip to content

Commit e4f8470

Browse files
author
Troy Melhase
committed
Arg.
1 parent e826511 commit e4f8470

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Transformation of literal values happens at the AST level; see the
3434

3535
### Expressions
3636

37-
#### Constant Expression
37+
#### Constant Expressions
3838

3939
Constant expressions are translated to their Python equivalents.
4040

@@ -44,7 +44,7 @@ Ternary expressions are translated to their Python form (`val if condition else
4444
other`)
4545

4646

47-
### Prefix Operators
47+
#### Prefix Operators
4848

4949
All of the Java prefix operators are supported:
5050

@@ -53,7 +53,7 @@ All of the Java prefix operators are supported:
5353
In the case of `++` and `--`, java2python translates to `+= 1` and `-= 1`. If
5454
necessary, those expressions are moved outside of statements.
5555

56-
### Assignment Operators
56+
#### Assignment Operators
5757

5858
All of the following assignment operators are translated into their Python
5959
equivalents:
@@ -66,7 +66,7 @@ replaces the operator with that function and includes the function within the
6666
output. This behavior is controlled by the `modulePrologueHandlers` config
6767
handler.
6868

69-
### Infix Operators
69+
#### Infix Operators
7070

7171
The following operators are translated to their Python equivalents:
7272

0 commit comments

Comments
 (0)