mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-12 06:22:00 +00:00
621c861cd6
Formatting changes only (no functional changes):
- Remove trailing whitespace after closing braces (lines 33, 75, 81)
- Add spaces around operators in Dict type parameters:
* Dict{Int, Vector{Float64}} → Dict{Int,Vector{Float64}}
* Dict{String, Vector{Int}} → Dict{String,Vector{Int}}
* Tuple{Symbol, Vector{Int}} → Tuple{Symbol,Vector{Int}}
- Add spaces around arithmetic operators:
* (j-1)*(n+1) → (j - 1) * (n + 1)
* Similar for all node index calculations
- Remove trailing space after comment text (line 172)
Improves code consistency with Julia style guide