higale 1 рік тому
батько
коміт
a2c2d20e84
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      rjson.pas

+ 3 - 3
rjson.pas

@@ -58,7 +58,7 @@ type
     function GetRootRefCount: Integer;
     function ForceRootJValue(const APath: string): TJValue;
     function LinkPath(const ALeft, ARight: string): string;
-    function GeTJValue: TJValue; inline;
+    function GetJValue: TJValue; inline;
     function GetItems(const APath: TRPath): TRJ;
     function GetPairs(AIndex: Integer): TRJ;
     procedure SetValue(const [ref] AValue: TRJ);
@@ -113,7 +113,7 @@ type
     property RootRefCount: Integer read GetRootRefCount;
     property Root: TRJ read GetRoot;
     property Path: string read FPath;
-    property JValue: TJValue read GeTJValue;
+    property JValue: TJValue read GetJValue;
 
     function CloneJValue: TJValue;
     function IsRoot: boolean; inline;
@@ -422,7 +422,7 @@ begin
     Result := ALeft + '.' + ARight;
 end;
 
-function TRJ.GeTJValue: TJValue;
+function TRJ.GetJValue: TJValue;
 begin
   Result := FIRoot.Data.FindValue(FPath);
 end;