Skip to content

Commit 070ea63

Browse files
authored
Don't mention charpoly_only in docstrings (#1977)
1 parent 5f26a3f commit 070ea63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Matrix.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4428,8 +4428,8 @@ function minpoly(S::PolyRing{T}, M::MatElem{T}, charpoly_only::Bool = false) whe
44284428
end
44294429

44304430
@doc raw"""
4431-
minpoly(M::MatElem{T}, charpoly_only::Bool = false) where {T <: RingElement}
4432-
minpoly(S::PolyRing{T}, M::MatElem{T}, charpoly_only::Bool = false) where {T <: RingElement}
4431+
minpoly(M::MatElem{T}) where {T <: RingElement}
4432+
minpoly(S::PolyRing{T}, M::MatElem{T}) where {T <: RingElement}
44334433
44344434
Return the minimal polynomial $p$ of the square matrix $M$.
44354435
If a polynomial ring $S$ over the same base ring as $Y$ is supplied,

src/generic/MatRing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ end
7272
###############################################################################
7373

7474
@doc raw"""
75-
minpoly(S::Ring, M::MatRingElem{T}, charpoly_only::Bool = false) where {T <: RingElement}
75+
minpoly(S::Ring, M::MatRingElem{T}) where {T <: RingElement}
7676
7777
Return the minimal polynomial $p$ of the matrix $M$. The polynomial ring $S$
7878
of the resulting polynomial must be supplied and the matrix must be square.

0 commit comments

Comments
 (0)