Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
scheinerman committed Aug 30, 2024
1 parent f78cb48 commit ebac8d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# julia --color=yes --project make.jl

using Documenter, Bijections
makedocs(; sitename="Bijections")
makedocs(; sitename = "Bijections")
2 changes: 1 addition & 1 deletion src/inversion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ See also `active_inv`.
"""
function inv(b::Bijection{S,T}) where {S,T}
bb = Bijection{T,S}()
for (x,y) in b
for (x, y) in b
bb[y] = x
end
return bb
Expand Down

0 comments on commit ebac8d7

Please sign in to comment.