Skip to content

Commit

Permalink
Make sure AutoDoc comments appear right before the declaration
Browse files Browse the repository at this point in the history
Otherwise CreatePreSheafMorphismByValues appears in the wrong group.
gap-packages/AutoDoc#267 tries to clarify if this
is a bug in AutoDoc or working as intended.
  • Loading branch information
zickgraf authored and kamalsaleh committed Oct 17, 2022
1 parent a3322d1 commit c65da8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "FunctorCategories",
Subtitle := "Categories of functors",
Version := "2022.10-08",
Version := "2022.10-09",

Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( "01/", ~.Version{[ 6, 7 ]}, "/", ~.Version{[ 1 .. 4 ]} ),
Expand Down
2 changes: 1 addition & 1 deletion gap/PreSheaves.gd
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ DeclareAttribute( "CreatePreSheaf",
DeclareOperation( "CreatePreSheaf",
[ IsCapCategory, IsRecord, IsRecord ] );

if false then
#! @Description
#! Another alternative input is the source category <A>B</A> and two defining lists <A>images_of_objects</A> and <A>images_of_morphisms</A> of <A>F</A>.
#! The order of their entries must correspond to that of the vertices and arrows of the underlying quiver.
Expand All @@ -294,7 +295,6 @@ DeclareOperation( "CreatePreSheaf",
#! in <C>MatrixCategory</C>( $k$ ), respectively.
#! @Arguments B, images_of_objects, images_of_morphisms
#! @Group CreatePreSheaf
if false then
DeclareOperation( "CreatePreSheaf",
[ IsCapCategory, IsList, IsList ] );
fi;
Expand Down

0 comments on commit c65da8a

Please sign in to comment.