summaryrefslogtreecommitdiff
path: root/rtl/os2/sysutils.pp
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/os2/sysutils.pp')
-rw-r--r--rtl/os2/sysutils.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtl/os2/sysutils.pp b/rtl/os2/sysutils.pp
index b5e6248ed7..181ccf25ae 100644
--- a/rtl/os2/sysutils.pp
+++ b/rtl/os2/sysutils.pp
@@ -777,7 +777,7 @@ end;
function SetCurrentDir (const NewDir: string): boolean;
begin
{$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
ChDir (NewDir);
Result := (IOResult = 0);
{$I+}
@@ -787,7 +787,7 @@ end;
function CreateDir (const NewDir: string): boolean;
begin
{$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
MkDir (NewDir);
Result := (IOResult = 0);
{$I+}
@@ -797,7 +797,7 @@ end;
function RemoveDir (const Dir: string): boolean;
begin
{$I-}
-{$WARNING Should be rewritten to avoid unit dos dependancy!}
+{$WARNING Should be rewritten to avoid unit dos dependency!}
RmDir (Dir);
Result := (IOResult = 0);
{$I+}