浏览代码

Added missing bbdoc for linking

Carl Husberg 5 年之前
父节点
当前提交
04eba16b77
共有 1 个文件被更改,包括 6 次插入1 次删除
  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()