From 3fdcebc0a08b247f80ff9e7593563fd32656a4d7 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 6 Sep 2020 17:50:32 +0200 Subject: [PATCH] following python recommendation functions have "active" docstring --- src/IO.f90 | 3 ++- src/rotations.f90 | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/IO.f90 b/src/IO.f90 index d4533f47c..5dbbf8563 100644 --- a/src/IO.f90 +++ b/src/IO.f90 @@ -10,6 +10,7 @@ module IO implicit none private + character(len=*), parameter, public :: & IO_WHITESPACE = achar(44)//achar(32)//achar(9)//achar(10)//achar(13) !< whitespace characters character, parameter, public :: & @@ -50,7 +51,7 @@ contains !-------------------------------------------------------------------------------------------------- -!> @brief does nothing. +!> @brief do self test !-------------------------------------------------------------------------------------------------- subroutine IO_init diff --git a/src/rotations.f90 b/src/rotations.f90 index fc523e813..ee1cf6b96 100644 --- a/src/rotations.f90 +++ b/src/rotations.f90 @@ -99,7 +99,7 @@ module rotations contains !-------------------------------------------------------------------------------------------------- -!> @brief doing self test +!> @brief do self test !-------------------------------------------------------------------------------------------------- subroutine rotations_init