소스 검색

Merge pull request #94842 from edassis/master

Fix typo in Array's `sort()` method description
Rémi Verschelde 1 년 전
부모
커밋
c2bf146fb6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      doc/classes/Array.xml

+ 1 - 1
doc/classes/Array.xml

@@ -694,7 +694,7 @@
 		<method name="sort">
 			<return type="void" />
 			<description>
-				Sorts the array in ascending order. The final order is dependent on the "less than" ([code]&gt;[/code]) comparison between elements.
+				Sorts the array in ascending order. The final order is dependent on the "less than" ([code]&lt;[/code]) comparison between elements.
 				[codeblocks]
 				[gdscript]
 				var numbers = [10, 5, 2.5, 8]