diff options
author | Copybara-Service <copybara-worker@google.com> | 2023-04-25 13:58:06 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-04-25 13:58:06 -0700 |
commit | 8518869eb9a8ef098a9dd7780b9e55d5b43b5873 (patch) | |
tree | d102fdc769f74ec29208285ab3f509230eaa50e4 /absl/base | |
parent | 4ffaea74c1f5408e0757547a1ca0518ad43fa9f1 (diff) | |
parent | 421a74dce4c6f768bfcca94ba62b65ded1d50f7c (diff) |
Merge pull request #1434 from Vertexwahn:fix-spelling
PiperOrigin-RevId: 527066823
Change-Id: Ifa1e9a43c7490b34f9f4dbfa12d3acbed6b49777
Diffstat (limited to 'absl/base')
-rw-r--r-- | absl/base/attributes.h | 4 | ||||
-rw-r--r-- | absl/base/internal/exception_safety_testing.h | 2 | ||||
-rw-r--r-- | absl/base/internal/thread_identity_test.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/absl/base/attributes.h b/absl/base/attributes.h index df2c458f..3e5aafba 100644 --- a/absl/base/attributes.h +++ b/absl/base/attributes.h @@ -331,8 +331,8 @@ // This functionality is supported by GNU linker. #ifndef ABSL_ATTRIBUTE_SECTION_VARIABLE #ifdef _AIX -// __attribute__((section(#name))) on AIX is achived by using the `.csect` psudo -// op which includes an additional integer as part of its syntax indcating +// __attribute__((section(#name))) on AIX is achieved by using the `.csect` +// psudo op which includes an additional integer as part of its syntax indcating // alignment. If data fall under different alignments then you might get a // compilation error indicating a `Section type conflict`. #define ABSL_ATTRIBUTE_SECTION_VARIABLE(name) diff --git a/absl/base/internal/exception_safety_testing.h b/absl/base/internal/exception_safety_testing.h index 77a5aec6..c1061544 100644 --- a/absl/base/internal/exception_safety_testing.h +++ b/absl/base/internal/exception_safety_testing.h @@ -946,7 +946,7 @@ class ExceptionSafetyTest { * `std::unique_ptr<T> operator()() const` where T is the type being tested. * It is used for reliably creating identical T instances to test on. * - * - Operation: The operation object (passsed in via tester.WithOperation(...) + * - Operation: The operation object (passed in via tester.WithOperation(...) * or tester.Test(...)) must be invocable with the signature * `void operator()(T*) const` where T is the type being tested. It is used * for performing steps on a T instance that may throw and that need to be diff --git a/absl/base/internal/thread_identity_test.cc b/absl/base/internal/thread_identity_test.cc index 46a6f743..5f17553e 100644 --- a/absl/base/internal/thread_identity_test.cc +++ b/absl/base/internal/thread_identity_test.cc @@ -95,7 +95,7 @@ TEST(ThreadIdentityTest, BasicIdentityWorksThreaded) { } TEST(ThreadIdentityTest, ReusedThreadIdentityMutexTest) { - // This test repeatly creates and joins a series of threads, each of + // This test repeatedly creates and joins a series of threads, each of // which acquires and releases shared Mutex locks. This verifies // Mutex operations work correctly under a reused // ThreadIdentity. Note that the most likely failure mode of this |