summaryrefslogtreecommitdiffstats
path: root/NOTES-WINDOWS.md
diff options
context:
space:
mode:
authorThiago Suchorski <suchorski@ymail.com>2022-09-22 08:27:27 -0300
committerTomas Mraz <tomas@openssl.org>2022-11-23 18:21:43 +0100
commit86699ac6ef49bd6578f0a125f8c018e2ab9298bb (patch)
tree6dfacce82a56005273ca7bbba882d206c712ca8b /NOTES-WINDOWS.md
parentcb6f8ae4638ecd1177a166c0bfd704e38ab844ff (diff)
Fixed some grammar and spelling
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/19262) (cherry picked from commit af33b200da8040c78dbfd8405878190980727171)
Diffstat (limited to 'NOTES-WINDOWS.md')
-rw-r--r--NOTES-WINDOWS.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/NOTES-WINDOWS.md b/NOTES-WINDOWS.md
index b1d6c4fe13..63264b5731 100644
--- a/NOTES-WINDOWS.md
+++ b/NOTES-WINDOWS.md
@@ -23,7 +23,7 @@ or
"Hosted" OpenSSL relies on an external POSIX compatibility layer
for building (using GNU/Unix shell, compiler, and tools) and at run time.
-For this option you can use Cygwin.
+For this option, you can use Cygwin.
Native builds using Visual C++
==============================
@@ -212,7 +212,7 @@ Linking native applications
This section applies to all native builds.
-If you link with static OpenSSL libraries then you're expected to
+If you link with static OpenSSL libraries, then you're expected to
additionally link your application with `WS2_32.LIB`, `GDI32.LIB`,
`ADVAPI32.LIB`, `CRYPT32.LIB` and `USER32.LIB`. Those developing
non-interactive service applications might feel concerned about
@@ -220,7 +220,7 @@ linking with `GDI32.LIB` and `USER32.LIB`, as they are justly associated
with interactive desktop, which is not available to service
processes. The toolkit is designed to detect in which context it's
currently executed, GUI, console app or service, and act accordingly,
-namely whether or not to actually make GUI calls. Additionally those
+namely whether to actually make GUI calls. Additionally, those
who wish to `/DELAYLOAD:GDI32.DLL` and `/DELAYLOAD:USER32.DLL` and
actually keep them off service process should consider implementing
and exporting from .exe image in question own `_OPENSSL_isservice` not
@@ -261,5 +261,5 @@ Apart from that, follow the Unix / Linux instructions in INSTALL.md.
NOTE: `make test` and normal file operations may fail in directories
mounted as text (i.e. `mount -t c:\somewhere /home`) due to Cygwin
-stripping of carriage returns. To avoid this ensure that a binary
+stripping of carriage returns. To avoid this, ensure that a binary
mount is used, e.g. `mount -b c:\somewhere /home`.