From a4610ca61e9304169354e3d862395c291c2b69f1 Mon Sep 17 00:00:00 2001 From: shartte Date: Wed, 6 Mar 2019 18:26:32 +0100 Subject: [PATCH] Clarify encoding used for text by the File class (cherry picked from commit d1c095b30adc324889a9222ee4933ef922ae925e) --- doc/classes/File.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/classes/File.xml b/doc/classes/File.xml index c9a8f18116d..208c0de0f20 100644 --- a/doc/classes/File.xml +++ b/doc/classes/File.xml @@ -84,6 +84,7 @@ Returns the whole file as a [String]. + Text is interpreted as being UTF-8 encoded. @@ -102,6 +103,7 @@ Returns the next value of the file in CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long. + Text is interpreted as being UTF-8 encoded. @@ -137,6 +139,7 @@ Returns the next line of the file as a [String]. + Text is interpreted as being UTF-8 encoded. @@ -162,6 +165,7 @@ Returns a [String] saved in Pascal format from the file. + Text is interpreted as being UTF-8 encoded. @@ -337,6 +341,7 @@ Store the given [PoolStringArray] in the file as a line formatted in the CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long. + Text will be encoded as UTF-8. @@ -364,6 +369,7 @@ Stores the given [String] as a line in the file. + Text will be encoded as UTF-8. @@ -373,6 +379,7 @@ Stores the given [String] as a line in the file in Pascal format (i.e. also store the length of the string). + Text will be encoded as UTF-8. @@ -391,6 +398,7 @@ Stores the given [String] in the file. + Text will be encoded as UTF-8.