diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-05-02 20:13:10 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-05-02 20:24:15 +0200 |
commit | d60c3ac625461da89e198b8912bb0bda251ef980 (patch) | |
tree | d6bddb4fc448c4a223cfa860637ed9366ff2cf52 /absl/functional | |
parent | 3132b83a1a1c82df959e000057de27e1b8ff692d (diff) |
Fix spelling mistakes
Diffstat (limited to 'absl/functional')
-rw-r--r-- | absl/functional/function_ref_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/functional/function_ref_test.cc b/absl/functional/function_ref_test.cc index f91e15e0..c61117eb 100644 --- a/absl/functional/function_ref_test.cc +++ b/absl/functional/function_ref_test.cc @@ -257,7 +257,7 @@ TEST(FunctionRef, PassByValueTypes) { "Reference types should be preserved"); // Make sure the address of an object received by reference is the same as the - // addess of the object passed by the caller. + // address of the object passed by the caller. { LargeTrivial obj; auto test = [&obj](LargeTrivial& input) { ASSERT_EQ(&input, &obj); }; |