From 56c146e68448db5622dc54823874ebb8605b55a9 Mon Sep 17 00:00:00 2001 From: Stanislav Horacek Date: Wed, 2 Feb 2022 19:47:22 +0100 Subject: make comments in example for TextStream localizable Change-Id: I4f18e6f5c2d3f8ec6ead759217178095d0c108a2 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/129383 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- source/text/sbasic/shared/03/sf_textstream.xhp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/text/sbasic/shared/03/sf_textstream.xhp b/source/text/sbasic/shared/03/sf_textstream.xhp index 2b7153b991..96b393539e 100644 --- a/source/text/sbasic/shared/03/sf_textstream.xhp +++ b/source/text/sbasic/shared/03/sf_textstream.xhp @@ -240,10 +240,10 @@ 'Opens the text file with the names to be read Dim inputFile as Object Set inputFile = FSO.OpenTextFile("/home/user/Documents/Students.txt") - 'Reads all the contents in the input file as a single string + 'Reads all the contents in the input file as a single string Dim allData as String allData = inputFile.ReadAll() - 'Splits the string into an array + 'Splits the string into an array Dim arrNames as Variant arrNames = SF_String.SplitLines(allData) ' (...) -- cgit