浏览代码

Updated descriptions for Public, Private and Protected

HurryStarfish 6 年之前
父节点
当前提交
d32ea01228
共有 1 个文件被更改,包括 3 次插入3 次删除
  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