Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
ajewellamz committed Jan 13, 2025
1 parent 795d6a7 commit c9d0aac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,9 @@ protected TokenTree toDafny(
} else {
valueToDafny = rustToDafny.formatted(rustValue);
}
yield TokenTree.of("::dafny_runtime::Rc::new(%s)".formatted(valueToDafny));
yield TokenTree.of(
"::dafny_runtime::Rc::new(%s)".formatted(valueToDafny)
);
} else {
if (isRustOption) {
var result = TokenTree.of(
Expand Down

0 comments on commit c9d0aac

Please sign in to comment.