Skip to content

Commit 499a455

Browse files
authored
Apply suggestions from code review
1 parent 1d00588 commit 499a455

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

STYLE_GUIDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ focus on the semantics of the proposed changes rather than style and formatting.
4444

4545
## Attributes
4646

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.
4949
Use this:
5050

5151
```
@@ -59,8 +59,8 @@ focus on the semantics of the proposed changes rather than style and formatting.
5959
real, dimension(:,:), allocatable :: b
6060
```
6161

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.
6464

6565
## End <scope> block closing statements
6666

0 commit comments

Comments
 (0)