From de47bd2323d2b4a2e551022430c28e52274856d8 Mon Sep 17 00:00:00 2001 From: Logan Saso Date: Sat, 10 Oct 2020 12:31:12 -0700 Subject: [PATCH] Added newline to multicharacter line of plaintext generation script --- tests/syntax-tests/source/Plaintext/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/syntax-tests/source/Plaintext/README.md b/tests/syntax-tests/source/Plaintext/README.md index 59c0065e..2a379aed 100644 --- a/tests/syntax-tests/source/Plaintext/README.md +++ b/tests/syntax-tests/source/Plaintext/README.md @@ -8,5 +8,5 @@ with open("plaintext.txt", "w"): except: pass f.write("\n") - f.write("Here is a line with multiple characters") + f.write("Here is a line with multiple characters\n") ```