Skip to content

Commit ccecdeb

Browse files
committed
format
1 parent f921149 commit ccecdeb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

haxe-checkstyle/modifierorder.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,24 @@ Checks that the order of modifiers conforms to the standards.
2727

2828
### Valid
2929

30-
```
30+
```java
3131
public static inline var COUNT:Int = 1;
3232
```
3333

34-
```
34+
```java
3535
override public function close() {}
3636
```
3737

3838
### Invalid
3939

40-
```
40+
```java
4141
inline public static var COUNT:Int = 1;\
4242
```
4343

44-
`Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE)`
44+
{{site.data.alerts.error}} Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE) {{site.data.alerts.end}}
4545

46-
```
46+
```java
4747
public override function close() {}
4848
```
4949

50-
`Invalid access modifier order: close (modifier: OVERRIDE)`
50+
{{site.data.alerts.error}} Invalid access modifier order: close (modifier: OVERRIDE) {{site.data.alerts.end}}

0 commit comments

Comments
 (0)