From 2762821c08ef011dd44381fd55b6569f99bad41b Mon Sep 17 00:00:00 2001 From: Ryan Roden-Corrent Date: Wed, 30 Sep 2020 19:04:26 -0400 Subject: [PATCH] Clarify store_string vs store_line. While the behavior can be implied from the name, it seems worth stating it explicitly. --- doc/classes/File.xml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/classes/File.xml b/doc/classes/File.xml index f1b9106d351..9a94231cc12 100644 --- a/doc/classes/File.xml +++ b/doc/classes/File.xml @@ -399,8 +399,7 @@ - Stores the given [String] as a line in the file. - Text will be encoded as UTF-8. + Appends [code]line[/code] to the file followed by a line return character ([code]\n[/code]), encoding the text as UTF-8. @@ -428,8 +427,7 @@ - Stores the given [String] in the file. - Text will be encoded as UTF-8. + Appends [code]string[/code] to the file without a line return, encoding the text as UTF-8.