typos (thanks Jamyn!)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4264 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-09-16 11:27:51 +00:00
parent 4d6282546d
commit f8062527fa
30 changed files with 67 additions and 67 deletions

View file

@ -102,7 +102,7 @@ a:hover
<h2>Introduction</h2>
<div>
<p>VPatch allows to create a patch file to update previous versions
of your software. The GenPat utitily generates the patch file. The
of your software. The GenPat utility generates the patch file. The
plug-in can use the patch to update a file. Using a patch, you can
reduce the download size of your updates, because only the differences
between the files are included in the patch file.</p>
@ -135,7 +135,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
<ul>
<li>OK</li>
<li>OK, new version already installed</li>
<li>An error occured while patching</li>
<li>An error occurred while patching</li>
<li>Patch data is invalid or corrupt</li>
<li>No suitable patches were found</li>
</ul>
@ -144,7 +144,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
<h3>Multiple patches in one file</h3>
<div>
<p>GenPat appends a patch to the file you specified. If there is already
a patch for the same orginal file in the patch file, the patch will
a patch for the same original file in the patch file, the patch will
be replaced. For example, if you want to be able to upgrade version
1 and 2 to version 3, you can put a 1 &gt; 3 and 2 &gt; 3 patch in
one file.</p>
@ -158,7 +158,7 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
<div>
<p>In version 2.1 support was added for exit codes (known as error levels
in the DOS period) to GenPat. GenPat will return an exit code based
on succes of the patch generation. Here is a list of the possible
on success of the patch generation. Here is a list of the possible
exit codes:</p>
<table width="547" border="0" cellspacing="0" cellpadding="0">
<tr>
@ -222,8 +222,8 @@ vpatch::vpatchfile "pathfile.pat" "source.file" "new.file"
<h3>Patch Generator (Delphi)</h3>
<div>
<p>The most interesting part of VPatch, the actual patch generation
algoritm, can be found in Source\GenPat\PatchGenerator.pas. The header
of that file contains a brief explanation of the algoritm as well.</p>
algorithm, can be found in Source\GenPat\PatchGenerator.pas. The header
of that file contains a brief explanation of the algorithm as well.</p>
</div>
<h3>User interface (Delphi)</h3>
<div>

View file

@ -78,7 +78,7 @@ void __declspec(dllexport) vpatchfile(HWND hwndParent, int string_size,
if ((result != PATCH_SUCCESS)) {
if (result == PATCH_ERROR)
pushstring("An error occured while patching");
pushstring("An error occurred while patching");
else if (result == PATCH_CORRUPT)
pushstring("Patch data is invalid or corrupt");
else if (result == PATCH_NOMATCH)