Skip to content

Commit 79c9bf2

Browse files
committed
docs: refined module procedure attribute ordering convention in Style Guide
1 parent 376b08c commit 79c9bf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

STYLE_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ focus on the semantics of the proposed changes rather than style and formatting.
6464
* For module procedures, declare attributes before the `module` keyword for better retro compatibility:
6565
Use this:
6666
```
67-
pure module function example()
67+
<attribute> <attribute> module <function/subroutine> <name>
6868
```
6969
instead of:
7070
```
71-
module pure function example()
71+
module <attribute> <attribute> <function/subroutine> <name>
7272
```
7373

7474
## End <scope> block closing statements

0 commit comments

Comments
 (0)