From 3c38f2442bf077f1e3a770fcca3e20155d4f5397 Mon Sep 17 00:00:00 2001 From: Ben Hourahine Date: Thu, 11 Mar 2021 08:48:36 +0000 Subject: [PATCH] Spelling mistake (#28) --- lib/mpifx.fypp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mpifx.fypp b/lib/mpifx.fypp index 68e76bb..8aa702c 100644 --- a/lib/mpifx.fypp +++ b/lib/mpifx.fypp @@ -39,7 +39,7 @@ #:set MAX_RANK = getvar('MAX_RANK', 6) -#! Returns colons within paranthesis according to the RANK or empty string +#! Returns colons within parenthesis according to the RANK or empty string #! if RANK is zero. #:def RANKSUFFIX(RANK) ${'' if RANK == 0 else '(' + ':' + ',:' * (RANK - 1) +')'}$