We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78cb48 commit ebac8d7Copy full SHA for ebac8d7
docs/make.jl
@@ -2,4 +2,4 @@
2
# julia --color=yes --project make.jl
3
4
using Documenter, Bijections
5
-makedocs(; sitename="Bijections")
+makedocs(; sitename = "Bijections")
src/inversion.jl
@@ -9,7 +9,7 @@ See also `active_inv`.
9
"""
10
function inv(b::Bijection{S,T}) where {S,T}
11
bb = Bijection{T,S}()
12
- for (x,y) in b
+ for (x, y) in b
13
bb[y] = x
14
end
15
return bb
0 commit comments