oops parens where there should have been brackets.

This commit is contained in:
Glen Whitney 2017-10-30 11:38:00 -04:00
parent 4254b760c9
commit 143e51b801
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ function( list, dummy )
if IsEmpty( list ) then
Error( "LOOPS: <1> must be nonempty." );
elif Length(list) = 1 then
return list(1);
return list[1];
fi;
group_list := [];
quasigroup_list := list{[1]};