From 795daba88e8d06e8ce252c2b79c4117399edc3d8 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 6 Aug 2025 11:26:10 -0400 Subject: [PATCH] Fix typos. --- examples/md2pdf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/md2pdf.c b/examples/md2pdf.c index 17580aa..1c77889 100644 --- a/examples/md2pdf.c +++ b/examples/md2pdf.c @@ -1,7 +1,7 @@ // // Simple markdown to PDF converter example for PDFio. // -// Copyright © 2024 by Michael R Sweet. +// Copyright © 2024-2025 by Michael R Sweet. // // Licensed under Apache License v2.0. See the file "LICENSE" for more // information. @@ -289,8 +289,8 @@ main(int argc, // I - Number of command-line arguments // Get the markdown file from the command-line... if (argc < 2 || argc > 3) { - fputs("Usage: md2pdf FILENANE.md [FILENAME.pdf]\n", stderr); - fputs(" md2pdf FILENANE.md >FILENAME.pdf\n", stderr); + fputs("Usage: md2pdf FILENAME.md [FILENAME.pdf]\n", stderr); + fputs(" md2pdf FILENAME.md >FILENAME.pdf\n", stderr); return (1); }