diff --git a/absl/meta/type_traits_test.cc b/absl/meta/type_traits_test.cc
index f0e341f57e3500daf7bc677fe912fb15604cac8b..67d1c4555c4a017ed030fa8e889df602dc55d27c 100644
--- a/absl/meta/type_traits_test.cc
+++ b/absl/meta/type_traits_test.cc
@@ -258,7 +258,7 @@ TEST(TypeTraitsTest, TestTrivialCopyCtor) {
   // types with vtables
   EXPECT_FALSE(absl::is_trivially_copy_constructible<Base>::value);
 
-  // Verify that std pair of such types is trivially copy constructible
+  // Verify that simple_pair of such types is trivially copy constructible
   EXPECT_TRUE(
       (absl::is_trivially_copy_constructible<simple_pair<int, char*>>::value));
   EXPECT_TRUE((
@@ -270,7 +270,7 @@ TEST(TypeTraitsTest, TestTrivialCopyCtor) {
   typedef int int10[10];
   EXPECT_FALSE(absl::is_trivially_copy_constructible<int10>::value);
 
-  // Verify that pairs of types without trivial copy constructors
+  // Verify that simple_pairs of types without trivial copy constructors
   // are not marked as trivial.
   EXPECT_FALSE((absl::is_trivially_copy_constructible<
                 simple_pair<int, std::string>>::value));