diff --git a/example/linalg/example_norm.f90 b/example/linalg/example_norm.f90 index 17a4d7625..43dc7e3eb 100644 --- a/example/linalg/example_norm.f90 +++ b/example/linalg/example_norm.f90 @@ -33,7 +33,7 @@ program example_norm print *, 'minval(||a(:,i)||) = ',norm(a, '-inf', dim=1) ! 1.00000000 0.00000000 3.00000000 ! Catch Error: - ! [norm] returned Value Error: dimension 4 is out of rank for shape(a)= [3 3] + ! [norm] returned Value Error: dimension 4 is out of rank for shape(a)= [3, 3] print *, 'invalid: ',norm(a,'inf', dim=4, err=err) print *, 'error = ',err%print()