소스 검색

Fixed conflict in len() function

Juan Linietsky 8 년 전
부모
커밋
512b9fbf4a
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      doc/base/classes.xml

+ 0 - 4
doc/base/classes.xml

@@ -494,11 +494,7 @@
 			<argument index="0" name="var" type="Variant">
 			</argument>
 			<description>
-<<<<<<< HEAD
 				Returns length of Variant 'var'. Length is the character count of String, element count of Array, size of Dictionary, etc. Note: Generates a fatal error if Variant can not provide a length.
-=======
-				Returns length of Variant 'var'. Length is the element count of an Array, size of a Dictionary, etc. Note: Generates a fatal error if Variant can not provide a length.
->>>>>>> 75b92e809dc95aefd3afab5a9efbd582a1a8d953
 				[codeblock]
 				a = [1, 2, 3, 4]
 				print(len(a))