Skip to content

Commit 49b9433

Browse files
committed
add some lazy
1 parent 5e110bf commit 49b9433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/blas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ end
161161
"Check that upper/lower (for special matrices) is correctly specified"
162162
function chkuplo(uplo::AbstractChar)
163163
if !(uplo == 'U' || uplo == 'L')
164-
throw(ArgumentError("uplo argument must be 'U' (upper) or 'L' (lower), got $uplo"))
164+
throw(ArgumentError(lazy"uplo argument must be 'U' (upper) or 'L' (lower), got $uplo"))
165165
end
166166
uplo
167167
end

0 commit comments

Comments
 (0)