diff --git a/NEWS.md b/NEWS.md index e3a40d1441d73..3c37b8fa56bd1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -169,7 +169,7 @@ This section lists changes that do not have deprecation warnings. of strings. Note that the renamed `adjoint` method (formerly `ctranspose`) does still act in a recursive manner, and that (very occassionally) `conj(adjoint(...))` will be preferrable to `transpose` for linear algebra problems using nested arrays as "block - matrices". ([#??]) + matrices". ([#23424]) Library improvements -------------------- diff --git a/base/linalg/conjarray.jl b/base/linalg/conjarray.jl index 22cb5d5ddd2df..a74faacf445ad 100644 --- a/base/linalg/conjarray.jl +++ b/base/linalg/conjarray.jl @@ -59,8 +59,8 @@ IndexStyle(::Type{CA}) where {CA<:ConjArray} = IndexStyle(parent_type(CA)) AdjointArray(array) A lazy-view wrapper of an `AbstractArray`, taking the elementwise adjoint. This -type is usually constructed (and unwrapped) via the [`adjoint`](@ref) function, but -currently this is the default behavior for `RowVector` only. For other arrays, the +type is usually constructed (and unwrapped) via the [`adjoint`](@ref) function, but +currently this is the default behavior for `RowVector` only. For other arrays, the `AdjointArray` constructor can be used directly. # Examples