File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ focus on the semantics of the proposed changes rather than style and formatting.
44
44
45
45
## Attributes
46
46
47
- * Always specify ``` intent `` ` for dummy arguments.
48
- * Don't use ``` dimension `` ` attribute to declare arrays because it is less verbose.
47
+ * Always specify ` intent ` for dummy arguments.
48
+ * Don't use ` dimension ` attribute to declare arrays because it is less verbose.
49
49
Use this:
50
50
51
51
```
@@ -59,8 +59,8 @@ focus on the semantics of the proposed changes rather than style and formatting.
59
59
real, dimension(:,:), allocatable :: b
60
60
```
61
61
62
- When defining many arrays of the same dimension, ``` dimension `` ` can be used as an exception if it makes the code less verbose.
63
- * If ``` optional ``` attribute is used to declare a dummy argument, it should follow the intent attribute
62
+ When defining many arrays of the same dimension, ` dimension ` can be used as an exception if it makes the code less verbose.
63
+ * If the ` optional ` attribute is used to declare a dummy argument, it should follow the ` intent ` attribute.
64
64
65
65
## End <scope > block closing statements
66
66
You can’t perform that action at this time.
0 commit comments