Skip to content

Commit 27bc1d7

Browse files
committed
docs: use punctuation consistently in bullets
1 parent 3fade86 commit 27bc1d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

STYLE_GUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ This style guide is a living document and proposed changes may be adopted after
1515

1616
## File naming conventions
1717

18-
* Source files should contain at most one `program`, `module`, or `submodule`.
19-
* The filename should match the program or module name and have the file extension `.f90` or `.F90` if preprocessing is required.
18+
* Source files should contain at most one `program`, `module`, or `submodule`
19+
* The filename should match the program or module name and have the file extension `.f90` or `.F90` if preprocessing is required
2020
* If the interface and implementation is split using submodules the implementation submodule file should have the same name as the
21-
interface (parent) module but end in `_implementation`.
21+
interface (parent) module but end in `_implementation`
2222
E.g., `string_class.f90` and `string_class_implementation.f90`
2323
* Tests should be added in the `tests` subdirectory and have the same name as the module they are testing with the `test_` prefix
24-
added.
24+
added
2525
E.g., `string_class.f90` and `tests/test_string_class.f90`
26-
* There should only ever be one `program` and `module` statement per file.
26+
* There should only ever be one `program` and `module` statement per file
2727

2828
## Indentation & whitespace
2929

3030
By setting and following a convention for indentation and whitespace, code reviews and git-diffs can
3131
focus on the semantics of the proposed changes rather than style and formatting.
3232

3333
* The body of every Fortran construct should be indented by __4 spaces__
34-
* Line length *should be limited to 80 characters* and __must not exceed 132__.
34+
* Line length *should be limited to 80 characters* and __must not exceed 132__
3535
* Please do not use <kbd>Tab</kbd> characters for indentation
3636
* Please remove trailing white space before committing code
3737

0 commit comments

Comments
 (0)