Browse Source

[docs] Fixed line breaks.

woollybah 5 năm trước cách đây
mục cha
commit
9aa76019b0
3 tập tin đã thay đổi với 24 bổ sung24 xóa
  1. 16 16
      blitz.mod/blitz.bmx
  2. 6 6
      glgraphics.mod/source.bmx
  3. 2 2
      system.mod/system.bmx

+ 16 - 16
blitz.mod/blitz.bmx

@@ -327,8 +327,8 @@ Rem
 bbdoc: Application title
 about: The #AppTitle global variable is used by various commands when a
 default application title is required - for example, when opening simple 
-windows or requesters.<br>
-<br>
+windows or requesters.<br/>
+<br/>
 Initially, #AppTitle is set to the value "BlitzMax Application". However, you may change
 #AppTitle at any time with a simple assignment.
 End Rem
@@ -380,8 +380,8 @@ Function WriteStderr( str$ )="bbWriteStderr"
 Rem
 bbdoc: Wait for a given number of milliseconds
 about:
-#Delay suspends program execution for at least @millis milliseconds.<br>
-<br>
+#Delay suspends program execution for at least @millis milliseconds.<br/>
+<br/>
 A millisecond is one thousandth of a second.
 End Rem
 Function Delay( millis:Int )="bbDelay"
@@ -389,8 +389,8 @@ 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>
+#UDelay suspends program execution for at least @microcseconds.<br/>
+<br/>
 A microsecond is one millionth of a second.
 End Rem
 Function UDelay( microseconds:Int )="void bbUDelay(int)!"
@@ -400,8 +400,8 @@ bbdoc: Get millisecond counter
 returns: Milliseconds since computer turned on.
 about:
 #MilliSecs returns the number of milliseconds elapsed since the computer
-was turned on.<br>
-<br>
+was turned on.<br/>
+<br/>
 A millisecond is one thousandth of a second.
 End Rem
 Function MilliSecs:Int()="bbMilliSecs"
@@ -444,10 +444,10 @@ Function MemMove( dst:Byte Ptr,src:Byte Ptr,size:Size_T )="void bbMemMove( void
 Rem
 bbdoc: Set garbage collector mode
 about:
-@mode can be one of the following:<br>
-1 : automatic GC - memory will be automatically garbage collected<br>
-2 : manual GC - no memory will be collected until a call to GCCollect is made<br>
-<br>
+@mode can be one of the following:<br/>
+1 : automatic GC - memory will be automatically garbage collected<br/>
+2 : manual GC - no memory will be collected until a call to GCCollect is made<br/>
+<br/>
 The default GC mode is automatic GC.
 End Rem
 Function GCSetMode( Mode:Int )="bbGCSetMode"
@@ -456,8 +456,8 @@ Rem
 bbdoc: Suspend garbage collector
 about:
 #GCSuspend temporarily suspends the garbage collector. No garbage
-collection will be performed following a call to #GCSuspend.<br>
-<br>
+collection will be performed following a call to #GCSuspend.<br/>
+<br/>
 Use #GCResume to resume the garbage collector. Note that #GCSuspend
 and #GCResume 'nest', meaning that each call to #GCSuspend must be 
 matched by a call to #GCResume.
@@ -467,8 +467,8 @@ Function GCSuspend()="bbGCSuspend"
 Rem
 bbdoc: Resume garbage collector
 about:
-#GCResume resumes garbage collection following a call to #GCSuspend.<br>
-<br>
+#GCResume resumes garbage collection following a call to #GCSuspend.<br/>
+<br/>
 See #GCSuspend for more details.
 End Rem
 Function GCResume()="bbGCResume"

+ 6 - 6
glgraphics.mod/source.bmx

@@ -247,10 +247,10 @@ End Function
 Rem
 bbdoc: Helper function to output some simple 8x16 font text
 about:
-Draws text relative to top-left of current viewport.<br>
-<br>
-The font used is an internal fixed point 8x16 font.<br>
-<br>
+Draws text relative to top-left of current viewport.<br/>
+<br/>
+The font used is an internal fixed point 8x16 font.<br/>
+<br/>
 This function is intended for debugging purposes only - performance is unlikely to be stellar.
 End Rem
 Function GLDrawText( Text$,x,y )
@@ -305,8 +305,8 @@ End Function
 Rem
 bbdoc: Helper function to draw a pixmap to a gl context
 about:
-Draws the pixmap relative to top-left of current viewport.<br>
-<br>
+Draws the pixmap relative to top-left of current viewport.<br/>
+<br/>
 This function is intended for debugging purposes only - performance is unlikely to be stellar.
 End Rem
 Function GLDrawPixmap( pixmap:TPixmap,x,y )

+ 2 - 2
system.mod/system.bmx

@@ -148,8 +148,8 @@ You can also specify some parameters to return the date in a format of your choi
 * %%Y | Year (2014).
 * %%Z | Time zone name.
 ]
-You can use these parameters together:<br>
-CurrentDate("Month: %%a Day: %%d")<br>
+You can use these parameters together:<br/>
+CurrentDate("Month: %%a Day: %%d")<br/>
 End Rem
 Function CurrentDate$(_format$="%d %b %Y")
 	Local	time[256],buff:Byte[256]