diff --git a/fortran/rules/S1.rst b/fortran/rules/S1.rst index a70268f..0898433 100644 --- a/fortran/rules/S1.rst +++ b/fortran/rules/S1.rst @@ -6,5 +6,3 @@ Two-word control flow constructs should be written as single words. ``ENDIF`` rather than ``END IF`` ``ENDDO`` rather than ``END DO`` ``ENDWHERE`` rather than ``END WHERE`` - -(this one makes me cry a little) diff --git a/fortran/rules/S2.rst b/fortran/rules/S2.rst index 2edba31..c32bd2a 100644 --- a/fortran/rules/S2.rst +++ b/fortran/rules/S2.rst @@ -8,7 +8,7 @@ To be avoided : .. code-block:: fortran :caption: declaration order - SUBROUTINE WRONG_ORDER( ARG3, ARG2, ARG1) + SUBROUTINE WRONG_ORDER( ARG1, ARG2, ARG3) INTEGER(KIND=JPIM), INTENT(IN) :: ARG3 INTEGER(KIND=JPIM), INTENT(IN) :: ARG2