Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RandomExtensions = "fb686558-2515-59ef-acaa-46db3789a887"
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"

[compat]
AbstractAlgebra = "0.47.4"
AbstractAlgebra = "0.47.6"
FLINT_jll = "~301.400.0"
LinearAlgebra = "1.6"
Random = "1.6"
Expand Down
4 changes: 2 additions & 2 deletions docs/src/integer.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ is_divisible_by(::ZZRingElem, ::Int)
is_divisible_by(::ZZRingElem, ::ZZRingElem)
```

```@docs
is_square(::ZZRingElem)
```@docs; canonical=false
is_square(::NCRingElement)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am OK with merging this as a "quick fix" but I wonder if we should not instead do it similar to how we did it in AA, and just have a list here:

The following standard ring methods are implemented for `ZZRingElem`:
- [`is_square`](@ref)
- ...

possibly followed by an example?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree that this is not optimal right now, but I just wanted to do a mechanical change as a bandaid

```

```@docs
Expand Down
4 changes: 2 additions & 2 deletions docs/src/padic.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ julia> q = lift(QQ, divexact(a, b))

### Square root

```@docs
Base.sqrt(::PadicFieldElem)
```@docs; canonical=false
is_square(::NCRingElement)
```

**Examples**
Expand Down
4 changes: 2 additions & 2 deletions docs/src/puiseux.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ for specific rings provided by Nemo.

### Special functions

```@docs
Base.sqrt(a::FlintPuiseuxSeriesElem{ZZLaurentSeriesRingElem})
```@docs; canonical=false
is_square(::NCRingElement)
```

```@docs
Expand Down
4 changes: 2 additions & 2 deletions docs/src/qadic.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ q = lift(Zy, divexact(a, b))

### Square root

```@docs
Base.sqrt(::QadicFieldElem)
```@docs; canonical=false
is_square(::NCRingElement)
```

**Examples**
Expand Down
Loading