Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
change another ** to ^
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveWitteMorris committed Nov 22, 2021
1 parent ef7bd6d commit c790824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/groups/abelian_gps/abelian_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ def __contains__(self, x):
sage: G.<a,b> = AbelianGroup(2)
sage: Hgens = [a*b, a*b^-1]
sage: H = G.subgroup(Hgens)
sage: b**2 in H
sage: b^2 in H
True
"""
if not isinstance(x, AbelianGroupElement):
Expand Down

0 comments on commit c790824

Please sign in to comment.