We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e110bf commit 49b9433Copy full SHA for 49b9433
stdlib/LinearAlgebra/src/blas.jl
@@ -161,7 +161,7 @@ end
161
"Check that upper/lower (for special matrices) is correctly specified"
162
function chkuplo(uplo::AbstractChar)
163
if !(uplo == 'U' || uplo == 'L')
164
- throw(ArgumentError("uplo argument must be 'U' (upper) or 'L' (lower), got $uplo"))
+ throw(ArgumentError(lazy"uplo argument must be 'U' (upper) or 'L' (lower), got $uplo"))
165
end
166
uplo
167
0 commit comments