@@ -110,7 +110,7 @@ move_fixed(x::AbstractSparseMatrixCSC) = FixedSparseCSC(size(x)..., getcolptr(x)
110110"""
111111 `_unsafe_unfix(x)`
112112
113- Experimental, unsafe. Returns a modifyable version of `x` for compatibility with this codebase.
113+ Experimental, unsafe. Returns a modifiable version of `x` for compatibility with this codebase.
114114"""
115115_unsafe_unfix (x:: FixedSparseCSC ) = SparseMatrixCSC (size (x)... , parent (getcolptr (x)), parent (rowvals (x)), nonzeros (x))
116116_unsafe_unfix (x:: SparseMatrixCSC ) = x
@@ -697,7 +697,7 @@ the original sparse matrix, except in the case where dimensions of the
697697output matrix are different from the output.
698698
699699The output matrix has zeros in the same locations as the input, but
700- unititialized values for the nonzero locations.
700+ uninitialized values for the nonzero locations.
701701"""
702702similar (S:: AbstractSparseMatrixCSC{<:Any,Ti} , :: Type{TvNew} ) where {Ti,TvNew} =
703703 @if_move_fixed S _sparsesimilar (S, TvNew, Ti)
@@ -1361,7 +1361,7 @@ end
13611361
13621362Transpose `A` and store it in `X` while applying the function `f` to the non-zero elements.
13631363Does not remove the zeros created by `f`. `size(X)` must be equal to `size(transpose(A))`.
1364- No additonal memory is allocated other than resizing the rowval and nzval of `X`, if needed.
1364+ No additional memory is allocated other than resizing the rowval and nzval of `X`, if needed.
13651365
13661366See `halfperm!`
13671367"""
@@ -1382,7 +1382,7 @@ end
13821382
13831383Transpose the matrix `A` and stores it in the matrix `X`.
13841384`size(X)` must be equal to `size(transpose(A))`.
1385- No additonal memory is allocated other than resizing the rowval and nzval of `X`, if needed.
1385+ No additional memory is allocated other than resizing the rowval and nzval of `X`, if needed.
13861386
13871387See `halfperm!`
13881388"""
@@ -1393,7 +1393,7 @@ transpose!(X::AbstractSparseMatrixCSC{Tv,Ti}, A::AbstractSparseMatrixCSC{Tv,Ti})
13931393
13941394Transpose the matrix `A` and stores the adjoint of the elements in the matrix `X`.
13951395`size(X)` must be equal to `size(transpose(A))`.
1396- No additonal memory is allocated other than resizing the rowval and nzval of `X`, if needed.
1396+ No additional memory is allocated other than resizing the rowval and nzval of `X`, if needed.
13971397
13981398See `halfperm!`
13991399"""
@@ -4273,7 +4273,7 @@ end
42734273function Base. swapcols! (A:: AbstractSparseMatrixCSC , i, j)
42744274 i == j && return
42754275
4276- # For simplicitly , let i denote the smaller of the two columns
4276+ # For simplicity , let i denote the smaller of the two columns
42774277 j < i && @swap (i, j)
42784278
42794279 colptr = getcolptr (A)
@@ -4312,7 +4312,7 @@ function Base.swapcols!(A::AbstractSparseMatrixCSC, i, j)
43124312end
43134313
43144314function Base. swaprows! (A:: AbstractSparseMatrixCSC , i, j)
4315- # For simplicitly , let i denote the smaller of the two rows
4315+ # For simplicity , let i denote the smaller of the two rows
43164316 j < i && @swap (i, j)
43174317
43184318 rows = rowvals (A)
0 commit comments