Skip to content

Commit

Permalink
add missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Feb 28, 2025
1 parent 9cd86e9 commit 360abc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/ext_data/magma/sage/basic.m
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ intrinsic Sage(X::RngPad) -> MonStgElt, BoolElt
{p-adic rings, either free precision model or exact model}
prec := Precision(X);
if Type(prec) eq Infty then
return Sprintf("Zp(%o, %o, 'relaxed')", Sage(Prime(X)), Sage(prec), false;
return Sprintf("Zp(%o, %o, 'relaxed')", Sage(Prime(X)), Sage(prec)), false;
else
return Sprintf("Zp(%o, %o, 'capped-abs')", Sage(Prime(X)), Sage(prec)), false;
end if;
Expand Down

0 comments on commit 360abc9

Please sign in to comment.