Quellcode durchsuchen

Mas typo fixes in strings for utils.

Margers vor 6 Tagen
Ursprung
Commit
7c75393d40
2 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  1. 4 4
      utils/h2pas/scan.pas
  2. 2 2
      utils/h2pas/scanbase.pp

+ 4 - 4
utils/h2pas/scan.pas

@@ -865,25 +865,25 @@ begin
 
                         begin
                           if not stripinfo then
-                            writeln(outfile,'{ C++ extern C conditionnal removed }');
+                            writeln(outfile,'{ C++ extern C conditional removed }');
                         end;
   51:
 
                         begin
                           if not stripinfo then
-                            writeln(outfile,'{ C++ extern C conditionnal removed }');
+                            writeln(outfile,'{ C++ extern C conditional removed }');
                         end;
   52:
 
                         begin
                           if not stripinfo then
-                            writeln(outfile,'{ C++ end of extern C conditionnal removed }');
+                            writeln(outfile,'{ C++ end of extern C conditional removed }');
                         end;
   53:
 
                         begin
                           if not stripinfo then
-                            writeln(outfile,'{ C++ end of extern C conditionnal removed }');
+                            writeln(outfile,'{ C++ end of extern C conditional removed }');
                         end;
   54:
 

+ 2 - 2
utils/h2pas/scanbase.pp

@@ -636,9 +636,9 @@ Procedure HandlePreProcStripConditional(isEnd : Boolean);
 begin
   if not stripinfo then
     if isEnd then
-      writeln(outfile,'{ C++ end of extern C conditionnal removed }')
+      writeln(outfile,'{ C++ end of extern C conditional removed }')
     else
-      writeln(outfile,'{ C++ extern C conditionnal removed }');
+      writeln(outfile,'{ C++ extern C conditional removed }');
 end;
 
 Procedure HandleIdentifier;