Selaa lähdekoodia

* Fixed spell errors.

git-svn-id: trunk@17177 -
mazen 14 vuotta sitten
vanhempi
commit
86d9eadc73

+ 1 - 1
packages/univint/src/cblas.pas

@@ -580,7 +580,7 @@ procedure vMultMatMat_32x32( ConstVectorFloat A[32][8]; ConstVectorFloat B[32][8
 {
 {
    -------------------------------------------------------------------------------------------------
    -------------------------------------------------------------------------------------------------
    These routines provide optimized support for common small matrix multiplications. They use
    These routines provide optimized support for common small matrix multiplications. They use
-   the scalar floating point unit and have no dependancy on SIMD instructions. They are intended
+   the scalar floating point unit and have no dependency on SIMD instructions. They are intended
    as complements to the AltiVec-only routines above. They do not check for parameter errors.  They just do
    as complements to the AltiVec-only routines above. They do not check for parameter errors.  They just do
    the multiplication as fast as possible.  Matrices are presumed to use row major storage.  Because
    the multiplication as fast as possible.  Matrices are presumed to use row major storage.  Because
    these are all square, column major matrices can be multiplied by simply reversing the parameters.
    these are all square, column major matrices can be multiplied by simply reversing the parameters.

+ 1 - 1
packages/winunits-base/src/uxtheme.pp

@@ -1736,7 +1736,7 @@ var
 implementation
 implementation
 
 
 {$ifdef USE_SYNCOBJS}
 {$ifdef USE_SYNCOBJS}
-// we can't do this due to a circular dependancy between winunits-base and fcl-base
+// we can't do this due to a circular dependency between winunits-base and fcl-base
 uses
 uses
   SyncObjs;
   SyncObjs;
 {$endif}
 {$endif}

+ 3 - 3
rtl/os2/sysutils.pp

@@ -777,7 +777,7 @@ end;
 function SetCurrentDir (const NewDir: string): boolean;
 function SetCurrentDir (const NewDir: string): boolean;
 begin
 begin
 {$I-}
 {$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
  ChDir (NewDir);
  ChDir (NewDir);
  Result := (IOResult = 0);
  Result := (IOResult = 0);
 {$I+}
 {$I+}
@@ -787,7 +787,7 @@ end;
 function CreateDir (const NewDir: string): boolean;
 function CreateDir (const NewDir: string): boolean;
 begin
 begin
 {$I-}
 {$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
  MkDir (NewDir);
  MkDir (NewDir);
  Result := (IOResult = 0);
  Result := (IOResult = 0);
 {$I+}
 {$I+}
@@ -797,7 +797,7 @@ end;
 function RemoveDir (const Dir: string): boolean;
 function RemoveDir (const Dir: string): boolean;
 begin
 begin
 {$I-}
 {$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
  RmDir (Dir);
  RmDir (Dir);
  Result := (IOResult = 0);
  Result := (IOResult = 0);
  {$I+}
  {$I+}

+ 1 - 1
utils/fpdoc/dglobals.pp

@@ -792,7 +792,7 @@ var
        end
        end
      else
      else
        if cls<>result then
        if cls<>result then
-         writeln(cls.name,'''s dependancy '  ,clname,' could not be resolved');
+         writeln(cls.name,'''s dependency '  ,clname,' could not be resolved');
 end;
 end;
 
 
 function CreateAliasType (alname,clname : string;parentclass:TPasClassType; out cl2 :TPasClassType):TPasAliasType;
 function CreateAliasType (alname,clname : string;parentclass:TPasClassType; out cl2 :TPasClassType):TPasAliasType;