We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd9e24 commit 8d4b8b6Copy full SHA for 8d4b8b6
src/sectors.jl
@@ -94,11 +94,18 @@ Base.one(a::Sector) = one(typeof(a))
94
95
"""
96
leftone(a::Sector) -> Sector
97
- rightone(a::Sector) -> Sector
98
99
-Return the left or right unit element within this type of sector.
+Return the left unit element within this type of sector.
+See also [`rightone`](@ref) and [`Base.one`](@ref).
100
101
leftone(a::Sector) = one(a)
102
+
103
+"""
104
+ rightone(a::Sector) -> Sector
105
106
+Return the right unit element within this type of sector.
107
+See also [`leftone`](@ref) and [`Base.one`](@ref).
108
109
rightone(a::Sector) = one(a)
110
111
0 commit comments