Skip to content

Commit d6dc207

Browse files
authored
Fix a typo (Nemocas#2045)
1 parent 2479164 commit d6dc207

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Groups.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ end
242242
# inv!(out::T, g::T) where {T<:GroupElem} = inv(g)
243243

244244
"""
245-
div_right!(out::T, g::T, h::T) where {GEl <: GroupElem}
245+
div_right!(out::T, g::T, h::T) where {T <: GroupElem}
246246
247247
Return `g*inv(h)`, possibly modifying `out`. Aliasing of `g` or `h` with `out`
248248
is allowed.
@@ -253,7 +253,7 @@ function div_right!(out::T, g::T, h::T) where {T<:GroupElem}
253253
end
254254

255255
"""
256-
div_left!(out::T, g::T, h::T) where {GEl <: GroupElem}
256+
div_left!(out::T, g::T, h::T) where {T <: GroupElem}
257257
258258
Return `inv(h)*g`, possibly modifying `out`. Aliasing of `g` or `h` with `out`
259259
is allowed.
@@ -264,7 +264,7 @@ function div_left!(out::T, g::T, h::T) where {T<:GroupElem}
264264
end
265265

266266
"""
267-
conj!(out::T, g::T, h::T) where {GEl <: GroupElem}
267+
conj!(out::T, g::T, h::T) where {T <: GroupElem}
268268
269269
Return `inv(h)*g*h`, possibly modifying `out`. Aliasing of `g` or `h` with
270270
`out` is allowed.
@@ -276,7 +276,7 @@ function conj!(out::T, g::T, h::T) where {T<:GroupElem}
276276
end
277277

278278
"""
279-
comm!(out::T, g::T, h::T) where {GEl <: GroupElem}
279+
comm!(out::T, g::T, h::T) where {T <: GroupElem}
280280
281281
Return `inv(g)*inv(h)*g*h`, possibly modifying `out`. Aliasing of `g` or `h`
282282
with `out` is allowed.

0 commit comments

Comments
 (0)