Sfoglia il codice sorgente

More bbdoc link fixes

Carl Husberg 5 anni fa
parent
commit
5f4bb3ca63

+ 1 - 1
collections.mod/linkedlist.bmx

@@ -232,7 +232,7 @@ Public
 	
 	Rem
 	bbdoc: Determines whether @value is in the #TLinkedList.
-	returns: #True if @value is in the #TLinkedList, or #Fale otherwise.
+	returns: #True if @value is in the #TLinkedList, or #False otherwise.
 	End Rem
 	Method Contains:Int(value:T)
 		Return Find(value) <> Null

+ 1 - 1
collections.mod/list.bmx

@@ -139,7 +139,7 @@ Public
 	End Method
 	
 	Rem
-	bbdoc: Returns the zero-based index of the first occurrence of a value in the #List.
+	bbdoc: Returns the zero-based index of the first occurrence of a value in the #TArrayList.
 	End Rem
 	Method IndexOf:Int(element:T) Override
 		For Local i:Int = 0 Until size

+ 1 - 1
collections.mod/set.bmx

@@ -197,7 +197,7 @@ Type TSet<T> Implements ISet<T>
 	Rem
 	bbdoc: Returns a view of a subset in the #TSet.
 	returns: A subset view that contains only the values in the specified range.
-	about: This method returns a view of the range of elements that fall between #lowerValue and #upperValue.
+	about: This method returns a view of the range of elements that fall between @lowerValue and @upperValue.
 	This method does not copy elements from the #TSet, but provides a window into the underlying #TSet itself.
 	You can make changes in both the view and in the underlying #TSet.
 	End Rem

+ 1 - 1
stringbuilder.mod/stringbuilder.bmx

@@ -884,7 +884,7 @@ End Type
 Rem
 bbdoc: An array of split text from a TStringBuilder.
 about: Note that the #TSplitBuffer is only valid while its parent #TStringBuilder is unchanged.
-Once you modify the #TStringBuffer you should call Split() again.
+Once you modify the #TSplitBuffer you should call Split() again.
 End Rem
 Type TSplitBuffer
 Private