We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f921149 commit ccecdebCopy full SHA for ccecdeb
haxe-checkstyle/modifierorder.md
@@ -27,24 +27,24 @@ Checks that the order of modifiers conforms to the standards.
27
28
### Valid
29
30
-```
+```java
31
public static inline var COUNT:Int = 1;
32
```
33
34
35
override public function close() {}
36
37
38
### Invalid
39
40
41
inline public static var COUNT:Int = 1;\
42
43
44
-`Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE)`
+{{site.data.alerts.error}} Invalid access modifier order: COUNT (modifier: PUBLIC_PRIVATE) {{site.data.alerts.end}}
45
46
47
public override function close() {}
48
49
50
-`Invalid access modifier order: close (modifier: OVERRIDE)`
+{{site.data.alerts.error}} Invalid access modifier order: close (modifier: OVERRIDE) {{site.data.alerts.end}}
0 commit comments