From a830274b8e2a2506484c6a83a46e35da9bc2a42e Mon Sep 17 00:00:00 2001 From: sgeard Date: Thu, 14 Sep 2023 20:15:22 +0100 Subject: [PATCH] Add missing space after gradient --- app/main.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.f90 b/app/main.f90 index fe02cee..db636fb 100644 --- a/app/main.f90 +++ b/app/main.f90 @@ -706,7 +706,7 @@ contains call stats%set('corr',c) call stats%set('cov',sxy) write(6,'(/a)') 'Regression: y = ax + b' - call print_value(' gradient a ->',a) + call print_value(' gradient a -> ',a) call print_value(' intercept b -> ',b) call print_value(' covariance cov -> ',sxy) call print_value('correlation corr -> ',c)