Skip to content

Commit

Permalink
fixup into fix candid
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Sep 30, 2023
1 parent f5bf898 commit 06bec7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_new/visitors/did_visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DEFAULT_VISITOR_DATA: VisitorData = {
export function DidResultToCandidString(result: VisitorResult): string {
const [candid, candidTypeDefs] = result;
const candidTypesString = newTypeToCandidString(candidTypeDefs);
return candidTypesString + candid;
return candidTypesString + candid + '\n';
}

function newTypeToCandidString(newTypes: CandidTypesDefs): string {
Expand Down

0 comments on commit 06bec7c

Please sign in to comment.