Skip to content

Commit

Permalink
fix: remove parts of docstrings which make :fix sad
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma committed Feb 6, 2025
1 parent b1cd279 commit 3774201
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/calcium/qqbar.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1108,10 +1108,6 @@ julia> QQBar = algebraic_closure(QQ);
julia> x = sinpi(QQBar(1//3))
Root 0.866025 of 4x^2 - 3
julia> sinpi(x)
ERROR: DomainError with Root 0.866025 of 4x^2 - 3:
nonrational algebraic number
```
"""
function sinpi(a::QQBarFieldElem)
Expand All @@ -1136,10 +1132,6 @@ julia> QQBar = algebraic_closure(QQ);
julia> x = cospi(QQBar(1//6))
Root 0.866025 of 4x^2 - 3
julia> cospi(x)
ERROR: DomainError with Root 0.866025 of 4x^2 - 3:
nonrational algebraic number
```
"""
function cospi(a::QQBarFieldElem)
Expand All @@ -1164,10 +1156,6 @@ julia> QQBar = algebraic_closure(QQ);
julia> s, c = sincospi(QQBar(1//3))
(Root 0.866025 of 4x^2 - 3, Root 0.500000 of 2x - 1)
julia> sincospi(s)
ERROR: DomainError with Root 0.866025 of 4x^2 - 3:
nonrational algebraic number
```
"""
function sincospi(a::QQBarFieldElem)
Expand Down

0 comments on commit 3774201

Please sign in to comment.