Skip to content

Commit 75df27f

Browse files
Get-missing-fonts-for-pdf-conversion
1 parent 35320e4 commit 75df27f

File tree

1 file changed

+3
-3
lines changed
  • Word-to-PDF-Conversion/Get-missing-fonts-for-pdf-conversion/.NET/Get-missing-fonts-for-pdf-conversion

1 file changed

+3
-3
lines changed

Word-to-PDF-Conversion/Get-missing-fonts-for-pdf-conversion/.NET/Get-missing-fonts-for-pdf-conversion/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ static void Main()
3535
}
3636
}
3737

38-
// Check and output the fonts that are not installed
38+
// Print the fonts that are not available in machine, but used in Word document.
3939
if (fonts.Count > 0)
4040
{
41-
Console.WriteLine("Fonts not installed in environment:");
41+
Console.WriteLine("Fonts not available in environment:");
4242
foreach (string font in fonts)
4343
Console.WriteLine(font);
4444
}
4545
else
4646
{
47-
Console.WriteLine("Document used fonts are all installed.");
47+
Console.WriteLine("Fonts used in Word document are available in environment.");
4848
}
4949
}
5050

0 commit comments

Comments
 (0)