Browse Source

Added missing bbdoc for linking

Carl Husberg 5 years ago
parent
commit
04eba16b77
1 changed files with 6 additions and 1 deletions
  1. 6 1
      blitz.mod/iterator.bmx

+ 6 - 1
blitz.mod/iterator.bmx

@@ -1,10 +1,15 @@
-
+Rem
+bbdoc: Iterable interface
+EndRem
 Interface IIterable<T>
 Interface IIterable<T>
 
 
 	Method GetIterator:IIterator<T>()
 	Method GetIterator:IIterator<T>()
 
 
 End Interface
 End Interface
 
 
+Rem
+bbdoc: Iterator interface
+EndRem
 Interface IIterator<T>
 Interface IIterator<T>
 
 
 	Method Current:T()
 	Method Current:T()