From 143e51b801b2e9fd958a1aac2db60bd277c44824 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Mon, 30 Oct 2017 11:38:00 -0400 Subject: [PATCH] oops parens where there should have been brackets. --- gap/quasigroups.gi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gap/quasigroups.gi b/gap/quasigroups.gi index 3e1dfc2..e90f08b 100644 --- a/gap/quasigroups.gi +++ b/gap/quasigroups.gi @@ -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]};