Skip to content

Commit

Permalink
Add better error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed May 5, 2021
1 parent 3972f7f commit 8a0f8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ SetPackageInfo( rec(

PackageName := "BacktrackKit",
Subtitle := "An Extensible, easy to understand backtracking framework",
Version := "0.3.1",
Date := "07/11/2019", # dd/mm/yyyy format
Version := "0.4",
Date := "05/05/2021", # dd/mm/yyyy format


Persons := [
Expand Down
2 changes: 1 addition & 1 deletion gap/BacktrackKit.gi
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ InstallMethod(ApplyFilters, [IsBTKitState, IsTracer, IsObject],
return false;
fi;
else
ErrorNoReturn("Invalid filter?");
ErrorNoReturn("BacktrackKit refiners must be 'fail' or a single function");
fi;
return true;
end);
Expand Down

0 comments on commit 8a0f8e4

Please sign in to comment.