Skip to content

Commit

Permalink
remove @?
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Dec 3, 2024
1 parent 561425e commit ff6d964
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Package;
import PackageDescription.V2 open;

package : Package :=
defaultPackage@?{
defaultPackage@{
name := "stdlib";
version := mkVersion 0 0 1;
dependencies := []
Expand Down
2 changes: 1 addition & 1 deletion Stdlib/Cairo/Ec.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ double (point : Point) : Point :=
slope := (3 * x * x + StarkCurve.ALPHA) / (2 * y);
r_x := slope * slope - x - x;
r_y := slope * (x - r_x) - y;
in mkPoint@?{
in mkPoint@{
x := r_x;
y := r_y;
};
Expand Down
2 changes: 1 addition & 1 deletion test/Package.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Package;
import PackageDescription.V2 open;

package : Package :=
defaultPackage@?{
defaultPackage@{
name := "stdlib-test";
dependencies :=
[
Expand Down

0 comments on commit ff6d964

Please sign in to comment.