Skip to content

Commit

Permalink
Merge pull request #64 from JuliaReach/schillic/typos
Browse files Browse the repository at this point in the history
Rename variables to avoid typos warnings
  • Loading branch information
schillic authored Apr 3, 2024
2 parents 5f7de90 + ae482d4 commit e1b32a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Arrays/matrix_operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,12 +255,12 @@ A sparse matrix that corresponds to the projection onto the variables in `block`
### Examples
```jldoctest; setup = :(using ReachabilityBase.Arrays)
julia> projection_matrix([1, 3], 4)
julia> proj = projection_matrix([1, 3], 4)
2×4 SparseArrays.SparseMatrixCSC{Float64, Int64} with 2 stored entries:
1.0 ⋅ ⋅ ⋅
⋅ ⋅ 1.0 ⋅
julia> Matrix(ans)
julia> Matrix(proj)
2×4 Matrix{Float64}:
1.0 0.0 0.0 0.0
0.0 0.0 1.0 0.0
Expand Down

0 comments on commit e1b32a0

Please sign in to comment.