Browse Source

rtl: fix typos

git-svn-id: trunk@14935 -
paul 15 years ago
parent
commit
bfb7d91b74
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/inc/except.inc

+ 2 - 2
rtl/inc/except.inc

@@ -184,7 +184,7 @@ begin
 end;
 end;
 
 
 
 
-Function fpc_Raiseexception (Obj : TObject; AnAddr,AFrame : Pointer) : TObject;[Public, Alias : 'FPC_RAISEEXCEPTION']; compilerproc;
+Function fpc_RaiseException (Obj : TObject; AnAddr,AFrame : Pointer) : TObject;[Public, Alias : 'FPC_RAISEEXCEPTION']; compilerproc;
 var
 var
   _ExceptObjectStack : PExceptObject;
   _ExceptObjectStack : PExceptObject;
   _ExceptAddrstack : PExceptAddr;
   _ExceptAddrstack : PExceptAddr;
@@ -339,7 +339,7 @@ end;
 
 
 Procedure fpc_DestroyException(o : TObject);[Public, Alias : 'FPC_DESTROYEXCEPTION']; compilerproc;
 Procedure fpc_DestroyException(o : TObject);[Public, Alias : 'FPC_DESTROYEXCEPTION']; compilerproc;
 begin
 begin
-  { with free we're on the really save side }
+  { with free we're on the really safe side }
   o.Free;
   o.Free;
 end;
 end;