unnecessary quotes

This commit is contained in:
Glen Whitney 2017-10-21 01:27:37 +02:00
parent 722e25f140
commit bc20a37410
1 changed files with 1 additions and 2 deletions

View File

@ -61,7 +61,7 @@ InstallOtherMethod(LeftQuotient, "for two conjugator objects",
function(l,r) return (l*r)/l; end function(l,r) return (l*r)/l; end
); );
InstallMethod("ConjugationQuandle", "for a group", InstallMethod(ConjugationQuandle, "for a group",
[IsGroup and IsFinite], [IsGroup and IsFinite],
function(G) function(G)
local fam, elts; local fam, elts;
@ -76,7 +76,6 @@ InstallMethod("ConjugationQuandle", "for a group",
return LeftQuandleNC(fam, elts); return LeftQuandleNC(fam, elts);
end); end);
Print("Loaded conj\n");