Skip to content

Commit 914746e

Browse files
Thomas CRATERThomas CRATER
authored andcommitted
Fix WritePDF for the build
1 parent 4ddd5bc commit 914746e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions/WritePDF.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const WritePDF = (outputTitle, outputNameFilePDF, filesParsed) => {
3232
const comments = filesParsed[i].functions[j].comments;
3333

3434
if (functionName) {
35-
const funcText = `Fonction ${functionName} :`;
35+
const funcText = `Fonction ${functionName} : `;
3636
doc.setFont("Helvetica", "Bold");
3737
doc.text(funcText, 30, currentCommentPosition);
3838
currentCommentPosition += 10;

0 commit comments

Comments
 (0)