Skip to content

Commit

Permalink
removed unnecessary parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschitschibor committed Aug 10, 2020
1 parent 76d19d9 commit 189f5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gap/CatRepsWithCAP.gi
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ InstallMethod( RelationsOfEndomorphisms,
while not mor^m in mpowers do
n := 1;
npowers := [];
while (not mor^(m+n) in npowers) and
while not mor^(m+n) in npowers and
not foundEqual do
if IsCongruentForMorphisms( mor^(m+n), mor^m ) then
Add( relsEndo,
Expand Down

0 comments on commit 189f5c3

Please sign in to comment.