Skip to content

Commit 64dabf8

Browse files
Apply suggestions from code review
Co-authored-by: Christopher Jefferson <[email protected]>
1 parent af952c2 commit 64dabf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matobjminimal.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ DeclareRepresentation( "IsMinimalMatrixRep",
5959
and HasBaseDomain and HasOneOfBaseDomain and HasZeroOfBaseDomain,
6060
[] );
6161

62-
# If we implement our object a a positional object we often have to access its
62+
# If we implement our object as a positional object we often have to access its
6363
# properties in the code. To make that more readable we declare global
6464
# variables. If you do this too make sure you use variables that are unique and
6565
# unlikely to be used someplace else, even though that might mean using longer
@@ -74,4 +74,4 @@ BindGlobal( "MINREP_NRPOS", 2 );
7474
# Position in the positional object of the number of columns
7575
BindGlobal( "MINREP_NCPOS", 3 );
7676
# Position in the positional object of the list of entries
77-
BindGlobal( "MINREP_ELSPOS", 4 );
77+
BindGlobal( "MINREP_ELSPOS", 4 );

0 commit comments

Comments
 (0)