소스 검색

Merge pull request #90766 from AThousandShips/file_doc

[Doc] Clarify behavior of `FileAccess.get_line`
Rémi Verschelde 1 년 전
부모
커밋
ec2e394d04
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      doc/classes/FileAccess.xml

+ 1 - 1
doc/classes/FileAccess.xml

@@ -190,7 +190,7 @@
 		<method name="get_line" qualifiers="const">
 			<return type="String" />
 			<description>
-				Returns the next line of the file as a [String].
+				Returns the next line of the file as a [String]. The returned string doesn't include newline ([code]\n[/code]) or carriage return ([code]\r[/code]) characters, but does include any other leading or trailing whitespace.
 				Text is interpreted as being UTF-8 encoded.
 			</description>
 		</method>