diff --git a/src/u_compilers.pas b/src/u_compilers.pas index bf20d413..850f8f54 100644 --- a/src/u_compilers.pas +++ b/src/u_compilers.pas @@ -245,7 +245,7 @@ procedure TCompilersPaths.checkIfGlobalIsGlobal; begin if globalCompiler = DCompiler.global then begin - raise Exception.Create('global compiler should not be set the DCompiler.global'); + raise Exception.Create('global compiler should not be set to DCompiler.global'); globalCompiler := low(DCompiler); end; end; diff --git a/src/u_main.pas b/src/u_main.pas index 494faaf6..cef5eebe 100644 --- a/src/u_main.pas +++ b/src/u_main.pas @@ -3016,7 +3016,7 @@ begin if (s.length > 2) and (s[1..3] = '-of') then begin lst.Delete(i); - fMsgs.message('the option "-of" is not be handled in the runnable modules', + fMsgs.message('the option "-of" is ignored when compiling a runnable modules', fDoc, amcEdit, amkWarn); end else if s = '-c' then @@ -3026,7 +3026,7 @@ begin else begin lst.Delete(i); - fMsgs.message('the option "-c" is not be handled when a module is tested', + fMsgs.message('the option "-c" is ignored when an individual module is tested', fDoc, amcEdit, amkWarn); end; end