Bladeren bron

Added missing bbdoc about statements

Carl Husberg 5 jaren geleden
bovenliggende
commit
74eb3bf43c
2 gewijzigde bestanden met toevoegingen van 3 en 0 verwijderingen
  1. 1 0
      blitz.mod/blitz.bmx
  2. 2 0
      maxunit.mod/maxunit.bmx

+ 1 - 0
blitz.mod/blitz.bmx

@@ -388,6 +388,7 @@ Function Delay( millis:Int )="bbDelay"
 
 Rem
 bbdoc: Wait for a given number of microseconds
+about:
 #UDelay suspends program execution for at least @microcseconds.<br>
 <br>
 A microsecond is one millionth of a second.

+ 2 - 0
maxunit.mod/maxunit.bmx

@@ -586,6 +586,7 @@ Type TAssert
 	
 	Rem
 	bbdoc: Asserts that an #Object is #Null.
+	about:
 	If it is not #Null, an #AssertionFailedException is thrown with the given message.
 	End Rem
 	Function assertNull(obj:Object, message:String = Null)
@@ -607,6 +608,7 @@ Type TAssert
 
 	Rem
 	bbdoc: Asserts that an pointer is #Null.
+	about:
 	If it is not #Null, an #AssertionFailedException is thrown with the given message.
 	End Rem
 	Function assertNull(value:Byte Ptr, message:String = Null)