summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAntoine Cœur <coeur@gmx.fr>2019-07-02 22:29:29 +0800
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-07-31 19:48:30 +0200
commita5c83db4ae3b3a94cdb88658280c36b6a74377ef (patch)
treee5f8704a5dc631918c9d5404126d6b1e04c538c9 /include
parentca33a43fe21ace99a7e689f40a90e3ad42e794a0 (diff)
Fix Typos
CLA: trivial Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/9295)
Diffstat (limited to 'include')
-rw-r--r--include/internal/thread_once.h2
-rw-r--r--include/internal/tsan_assist.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/internal/thread_once.h b/include/internal/thread_once.h
index 8a25d04d2d..8f8aa6e1c4 100644
--- a/include/internal/thread_once.h
+++ b/include/internal/thread_once.h
@@ -72,7 +72,7 @@
* 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
* primary initialiser function.
*
diff --git a/include/internal/tsan_assist.h b/include/internal/tsan_assist.h
index d41ebb341a..cc30162eb7 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
*