You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/gap/CategoriesCategory.gi.autogen.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -358,7 +358,7 @@ end );
358
358
end;
359
359
360
360
for i in (1):(Length( input_signature ))
361
-
CAP_INTERNAL_ASSERT_IS_OBJECT_OF_CATEGORY( arguments[ i ], input_signature[ i ][ 1 ], () ->@Concatenation( "the ", StringGAP(i), "-th argument passed to the functor named \033[1m", Name(functor), "\033[0m" ) );
361
+
CAP_INTERNAL_ASSERT_IS_OBJECT_OF_CATEGORY( arguments[ i ], input_signature[ i ][ 1 ], () ->@Concatenation( "the ", StringGAP(i), ". argument passed to the functor named \033[1m", Name(functor), "\033[0m" ) );
362
362
end;
363
363
end;
364
364
@@ -382,7 +382,7 @@ end );
382
382
end;
383
383
384
384
for i in (1):(Length( input_signature ))
385
-
CAP_INTERNAL_ASSERT_IS_MORPHISM_OF_CATEGORY( arguments[ i ], input_signature[ i ][ 1 ], () ->@Concatenation( "the ", StringGAP(i), "-th argument passed to the functor named \033[1m", Name(functor), "\033[0m" ) );
385
+
CAP_INTERNAL_ASSERT_IS_MORPHISM_OF_CATEGORY( arguments[ i ], input_signature[ i ][ 1 ], () ->@Concatenation( "the ", StringGAP(i), ". argument passed to the functor named \033[1m", Name(functor), "\033[0m" ) );
Copy file name to clipboardExpand all lines: src/gap/InstallAdds.gi.autogen.jl
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ end );
153
153
end;
154
154
155
155
# prepare input sanity check
156
-
input_human_readable_identifier_getter = ( i, function_name, category_name ) ->@Concatenation( "the ", StringGAP( i ), "-th argument of the function \033[1m", function_name, "\033[0m of the category named \033[1m", category_name, "\033[0m" );
156
+
input_human_readable_identifier_getter = ( i, function_name, category_name ) ->@Concatenation( "the ", StringGAP( i ), ". argument of the function \033[1m", function_name, "\033[0m of the category named \033[1m", category_name, "\033[0m" );
if (Length( listlist[i] ) !=Length( range_diagram ))
3357
3357
3358
-
return [ false, @Concatenation( "the ", StringGAP(i), "-th row has not the same length as the range diagram" ) ];
3358
+
return [ false, @Concatenation( "the ", StringGAP(i), ". row has not the same length as the range diagram" ) ];
3359
3359
3360
3360
end;
3361
3361
3362
3362
for j in (1):(Length( range_diagram ))
3363
3363
3364
3364
if (@notIsEqualForObjects( cat, source_diagram[i], Source( listlist[i][j] ) ))
3365
3365
3366
-
return [ false, @Concatenation( "the sources of the morphisms in the ", StringGAP(i), "-th row must be equal to the ", StringGAP(i), "-th entry of the source diagram" ) ];
3366
+
return [ false, @Concatenation( "the sources of the morphisms in the ", StringGAP(i), ". row must be equal to the ", StringGAP(i), ". entry of the source diagram" ) ];
3367
3367
3368
3368
end;
3369
3369
3370
3370
if (@notIsEqualForObjects( cat, range_diagram[j], Range( listlist[i][j] ) ))
3371
3371
3372
-
return [ false, @Concatenation( "the ranges of the morphisms in the ", StringGAP(j), "-th column must be equal to the ", StringGAP(j), "-th entry of the range diagram" ) ];
3372
+
return [ false, @Concatenation( "the ranges of the morphisms in the ", StringGAP(j), ". column must be equal to the ", StringGAP(j), ". entry of the range diagram" ) ];
0 commit comments