summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2022-08-23 20:45:13 +0200
committerTomas Mraz <tomas@openssl.org>2022-11-23 18:21:53 +0100
commitfee9986c3da13e533d7467df7f792253797f4115 (patch)
tree880b9fdd3e398291c9a03756762ade1e47f549bb /Configurations
parentf24b716f26f0e4956ea5cb049876cf2738e5e38d (diff)
apps & al : Fix various typos, repeated words, align some spelling to LDP.
Mostly revamped from #16712 - fall thru -> fall through - time stamp -> timestamp - host name -> hostname - ipv6 -> IPv6 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19059) (cherry picked from commit 9929c81702381bff54f833d6fe0a3304f4e2b635)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/Configurations/README.md b/Configurations/README.md
index be8c394d08..53f2277f8c 100644
--- a/Configurations/README.md
+++ b/Configurations/README.md
@@ -145,7 +145,7 @@ In each table entry, the following keys are significant:
would then be 'OPENSSL_ABC_<version>' rather than
the default 'OPENSSL_<version>'. The string inserted
into symbol versions is obtained by mapping all
- letters in the "variant" identifier to upper case
+ letters in the "variant" identifier to uppercase
and all non-alphanumeric characters to '_'.
thread_scheme => The type of threads is used on the
@@ -555,7 +555,7 @@ They are all expected to return a string with the lines they produce.
obj2lib(lib => "PATH/TO/libfile",
objs => [ "PATH/TO/objectfile", ... ]);
- 'lib' has the intended library file name *without*
+ 'lib' has the intended library filename *without*
extension, obj2lib is expected to add that. 'objs'
has the list of object files to build this library.
@@ -578,7 +578,7 @@ They are all expected to return a string with the lines they produce.
objs => [ "PATH/TO/objectfile", ... ],
deps => [ "PATH/TO/otherlibfile", ... ]);
- 'lib' has the base (static) library ffile name
+ 'lib' has the base (static) library filename
*without* extension. This is useful in case
supporting files are needed (such as import
libraries on Windows).
@@ -611,7 +611,7 @@ They are all expected to return a string with the lines they produce.
objs => [ "PATH/TO/objectfile", ... ],
deps => [ "PATH/TO/libfile", ... ]);
- 'bin' has the intended executable file name
+ 'bin' has the intended executable filename
*without* extension, obj2bin is expected to add
that. 'objs' has the list of object files to build
this library. 'deps' has the list of library files
@@ -626,7 +626,7 @@ They are all expected to return a string with the lines they produce.
in2script(script => "PATH/TO/scriptfile",
sources => [ "PATH/TO/infile", ... ]);
- 'script' has the intended script file name.
+ 'script' has the intended script filename.
'sources' has the list of source files to build the
resulting script from.