From 95b9835e8c95cb4d6e57bc9b69bbb18ece6c0b53 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Wed, 18 Oct 2017 22:16:56 +0200 Subject: [PATCH] Fix more typo. --- gap/structure.gi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gap/structure.gi b/gap/structure.gi index 7b6a8b8..08635a1 100644 --- a/gap/structure.gi +++ b/gap/structure.gi @@ -216,7 +216,7 @@ InstallMethod(RightDivisionTable, [HasMultiplicationTable], function (obj) local RS, n; - RS := RightPerms(fam); + RS := RightPerms(obj); n := Size(RS); return TransposedMat(List(RS, x->ListPerm(Inverse(x), n))); end);