Browse Source

Merge pull request #87 from HurryStarfish/patch-1

Updated keyword descriptions for Public, Private and Protected
Brucey 6 năm trước cách đây
mục cha
commit
24d3ad7ff6
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      blitz.mod/blitz.bmx

+ 3 - 3
blitz.mod/blitz.bmx

@@ -892,17 +892,17 @@ keyword: "Release"
 End Rem
 
 Rem
-bbdoc: Make a type, constant, global variable or function accessible from outside the current source file (default)
+bbdoc: Make types, constants, global variables, functions or type members accessible from outside the current source file (default)
 keyword: "Public"
 End Rem
 
 Rem
-bbdoc: Make a type, constant, global variable or function only accessible from within the current source file, or make a type member only accessible from within that type.
+bbdoc: Make types, constants, global variables, functions or type members only accessible from within the current source file.
 keyword: "Private"
 End Rem
 
 Rem
-bbdoc: Make a type member accessible only from within that type and from its subtypes.
+bbdoc: Make type members only accessible from within the current source file and within subtypes.
 keyword: "Protected"
 End Rem