From 7f56112f8ed232472447521d1004746b665b2f96 Mon Sep 17 00:00:00 2001 From: Ashley Engelund Date: Mon, 12 Sep 2022 09:17:40 -0700 Subject: [PATCH] change wording of console log message (use comma) Co-authored-by: Sidharth Vinod --- src/docs.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs.mts b/src/docs.mts index 318f03de0..06a1f4bff 100644 --- a/src/docs.mts +++ b/src/docs.mts @@ -49,7 +49,7 @@ const AUTOGENERATED_TEXT = `# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT. Please const LOGMSG_TRANSFORMED = 'transformed'; const LOGMSG_TO_BE_TRANSFORMED = 'to be transformed'; -const LOGMSG_COPIED = ` ...and copied to ${FINAL_DOCS_DIR}`; +const LOGMSG_COPIED = `, and copied to ${FINAL_DOCS_DIR}`; const WARN_DOCSDIR_DOESNT_MATCH = `Changed files were transformed in ${SOURCE_DOCS_DIR} but do not match the files in ${FINAL_DOCS_DIR}. Please run yarn docs:build after making changes to ${SOURCE_DOCS_DIR} to update the ${FINAL_DOCS_DIR} directory with the transformed files.`;