From ab35761b24806e603c4bceec61deddf911d328d5 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Wed, 25 Oct 2017 16:35:17 +0200 Subject: [PATCH] two more typos --- gap/structure.gi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gap/structure.gi b/gap/structure.gi index 38a114d..3013796 100644 --- a/gap/structure.gi +++ b/gap/structure.gi @@ -541,7 +541,7 @@ InstallOtherMethod(DirectProductOp, "for a list and non-quasigroup magma", elif Length(list) = 1 then return list[1]; fi; - jof := RoughJoinOfFilters(list, first); + jof := RoughJoinOfFilters@(list, first); # The dispatch below is somewhat ad-hoc, but covers the major existing cases @@ -567,7 +567,7 @@ InstallOtherMethod(DirectProductOp, "for a list and non-quasigroup magma", for i in [1..Length(list)] do for g in GeneratorsOfMagmaWithOne(list[i]) do current := ShallowCopy(ids); - current[i] = g; + current[i] := g; Add(gens, DirectProductElement(current)); od; od;