Skip to content

Commit

Permalink
fixfix
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma committed Nov 9, 2024
1 parent f726e5d commit 0aedd33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/manual/elliptic_curves/finite_fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ end

Return a random point on the elliptic curve $E$ defined over a finite field.

```jldoctest; filter = r"Point.*"
```jldoctest; filter = r"\(.*"
julia> E = elliptic_curve(GF(3), [1, 2]);
julia> rand(E)
Expand Down
2 changes: 1 addition & 1 deletion src/EllCrv/Finite.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ Return a list of generators of the group of rational points on $E$.
# Examples
```jldoctest; filter = r"(*"
```jldoctest; filter = r"\(.*"
julia> E = elliptic_curve(GF(101, 2), [1, 2]);
julia> gens(E)
Expand Down

0 comments on commit 0aedd33

Please sign in to comment.