Skip to content

Commit

Permalink
Fix PackageInfo.g errors introduced by linting
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed May 20, 2024
1 parent 8f1a9de commit 069bc98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/smallsemi",
),
IssueTrackerURL := Concatenation(~.SourceRepository.URL, " / issues"),
IssueTrackerURL := Concatenation(~.SourceRepository.URL, "/issues"),
ArchiveURL := Concatenation(~.SourceRepository.URL,
"/releases/download/v", ~.Version,
" / smallsemi -", ~.Version),
"/smallsemi-", ~.Version),
ArchiveFormats := ".tar.gz",

AbstractHTML :=
Expand Down Expand Up @@ -86,7 +86,7 @@ Keywords := ["small semigroups", "data library", "multiplication tables"],
AutoDoc := rec(
entities := rec(
VERSION := ~.Version,
ARCHIVENAME := Remove(SplitString(~.ArchiveURL, " / "))),
ARCHIVENAME := Remove(SplitString(~.ArchiveURL, "/"))),
TitlePage := rec(
Version := Concatenation("Version ", ~.Version),
Copyright := """
Expand Down

0 comments on commit 069bc98

Please sign in to comment.