Browse Source

Fixed type name typo.

woollybah 6 years ago
parent
commit
82113a6ad9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      json.mod/json.bmx

+ 3 - 3
json.mod/json.bmx

@@ -520,14 +520,14 @@ End Type
 Rem
 Rem
 bbdoc: Base type for JSON number types.
 bbdoc: Base type for JSON number types.
 End Rem
 End Rem
-Type JSONNumber Extends TJSON
+Type TJSONNumber Extends TJSON
 
 
 End Type
 End Type
 
 
 Rem
 Rem
 bbdoc: a JSON integer.
 bbdoc: a JSON integer.
 End Rem
 End Rem
-Type TJSONInteger Extends JSONNumber
+Type TJSONInteger Extends TJSONNumber
 
 
 	Rem
 	Rem
 	bbdoc: Creates an instance of #TJSONInteger with @v.
 	bbdoc: Creates an instance of #TJSONInteger with @v.
@@ -655,7 +655,7 @@ End Type
 Rem
 Rem
 bbdoc: A JSON real number.
 bbdoc: A JSON real number.
 End Rem
 End Rem
-Type TJSONReal Extends JSONNumber
+Type TJSONReal Extends TJSONNumber
 
 
 	Rem
 	Rem
 	bbdoc: Creates an instance of #TJSONReal with @v.
 	bbdoc: Creates an instance of #TJSONReal with @v.