summaryrefslogtreecommitdiffstats
path: root/include/internal
diff options
context:
space:
mode:
authorAntoine Cœur <coeur@gmx.fr>2019-07-02 16:04:04 +0800
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-07-02 14:22:29 +0200
commitc2969ff6e70b10f71fbd97c1d0b0cffc92bd69df (patch)
tree31e1c94c18598574c6074468cffbf16602f98a15 /include/internal
parentf663ddc7b00a2d75c1e7d868b73b24adc3f62095 (diff)
Fix Typos
CLA: trivial Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/9288)
Diffstat (limited to 'include/internal')
-rw-r--r--include/internal/property.h2
-rw-r--r--include/internal/thread_once.h4
-rw-r--r--include/internal/tsan_assist.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/include/internal/property.h b/include/internal/property.h
index d1432631dd..a916be3cc5 100644
--- a/include/internal/property.h
+++ b/include/internal/property.h
@@ -28,7 +28,7 @@ int ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid,
int ossl_method_store_set_global_properties(OSSL_METHOD_STORE *store,
const char *prop_query);
-/* proeprty query cache functions */
+/* property query cache functions */
int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, int nid,
const char *prop_query, void **result);
int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, int nid,
diff --git a/include/internal/thread_once.h b/include/internal/thread_once.h
index 033e970509..69a1754f1a 100644
--- a/include/internal/thread_once.h
+++ b/include/internal/thread_once.h
@@ -72,9 +72,9 @@
* function defined via DEFINE_ONCE_STATIC where both functions use the same
* CRYPTO_ONCE object to synchronise. Where an alternative initialiser function
* is used only one of the primary or the alternative initialiser function will
- * ever be called - and that function will be called exactly once. Definitition
+ * ever be called - and that function will be called exactly once. Definition
* of an alternative initialiser function MUST occur AFTER the definition of the
- * primiary initialiser function.
+ * primary initialiser function.
*
* Typical usage might be:
*
diff --git a/include/internal/tsan_assist.h b/include/internal/tsan_assist.h
index 0fd2f3e8f5..f8285b1d85 100644
--- a/include/internal/tsan_assist.h
+++ b/include/internal/tsan_assist.h
@@ -18,7 +18,7 @@
* if (var == NOT_YET_INITIALIZED)
* var = function_returning_same_value();
*
- * This does work provided that loads and stores are single-instuction
+ * This does work provided that loads and stores are single-instruction
* operations (and integer ones are on *all* supported platforms), but
* it upsets Thread Sanitizer. Suggested solution is
*