Browse Source

Merge pull request #256 from jogo-/patch-8

Typo fix Install.pas
Martijn Laan 7 years ago
parent
commit
f6a25feb6c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Projects/Install.pas

+ 4 - 4
Projects/Install.pas

@@ -2143,7 +2143,7 @@ var
               DidDeleteKey := False;
               if roDeleteKey in Options then begin
                 if IsDeletableSubkey(S) then begin
-                  Log('Deleting the key. ');
+                  Log('Deleting the key.');
                   RegDeleteKeyIncludingSubkeys(RV, RootKey, PChar(S));
                   DidDeleteKey := True;
                 end else
@@ -2292,11 +2292,11 @@ var
                             RegError(reRegSetValueEx, RootKey, S, ErrorCode);
                         end;
                       end;
-                    Log('Succesfully created or set the value.');
+                    Log('Successfully created or set the value.');
                   end else if roDeleteValue in Options then
-                    Log('Successully deleted the value.')
+                    Log('Successfully deleted the value.')
                   else
-                    Log('Successully created the key.')
+                    Log('Successfully created the key.')
                   { Our work is done. }
                 finally
                   RegCloseKey(K);