diff options
author | Vertexwahn <julian.amann@tum.de> | 2023-04-27 22:10:09 +0200 |
---|---|---|
committer | Vertexwahn <julian.amann@tum.de> | 2023-04-27 22:10:09 +0200 |
commit | 9c32e50df8e7bbd777c64107e7580ed434f003c0 (patch) | |
tree | 89f513c0043f88ab2b9097d81bd463ab9f1935c8 /absl/flags | |
parent | 65109ecdf01a829bdb5e428174b3abb181e75826 (diff) | |
download | abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.tar.gz abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.tar.bz2 abseil-9c32e50df8e7bbd777c64107e7580ed434f003c0.zip |
Fix spelling mistakes
Diffstat (limited to 'absl/flags')
-rw-r--r-- | absl/flags/CMakeLists.txt | 2 | ||||
-rw-r--r-- | absl/flags/internal/flag.cc | 2 | ||||
-rw-r--r-- | absl/flags/parse.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/absl/flags/CMakeLists.txt b/absl/flags/CMakeLists.txt index af5e0254..b5f6dfc4 100644 --- a/absl/flags/CMakeLists.txt +++ b/absl/flags/CMakeLists.txt @@ -297,7 +297,7 @@ absl_cc_library( ) ############################################################################ -# Unit tests in alpahabetical order. +# Unit tests in alphabetical order. absl_cc_test( NAME diff --git a/absl/flags/internal/flag.cc b/absl/flags/internal/flag.cc index cc656f9d..8da820e1 100644 --- a/absl/flags/internal/flag.cc +++ b/absl/flags/internal/flag.cc @@ -197,7 +197,7 @@ void FlagImpl::AssertValidType(FlagFastTypeId rhs_type_id, FlagFastTypeId lhs_type_id = flags_internal::FastTypeId(op_); // `rhs_type_id` is the fast type id corresponding to the declaration - // visibile at the call site. `lhs_type_id` is the fast type id + // visible at the call site. `lhs_type_id` is the fast type id // corresponding to the type specified in flag definition. They must match // for this operation to be well-defined. if (ABSL_PREDICT_TRUE(lhs_type_id == rhs_type_id)) return; diff --git a/absl/flags/parse.cc b/absl/flags/parse.cc index 172fe901..f41ddfcb 100644 --- a/absl/flags/parse.cc +++ b/absl/flags/parse.cc @@ -417,7 +417,7 @@ bool HandleGeneratorFlags(std::vector<ArgsList>& input_args, // programmatically before invoking ParseCommandLine. Note that we do not // actually process arguments specified in the flagfile, but instead // create a secondary arguments list to be processed along with the rest - // of the comamnd line arguments. Since we always the process most recently + // of the command line arguments. Since we always the process most recently // created list of arguments first, this will result in flagfile argument // being processed before any other argument in the command line. If // FLAGS_flagfile contains more than one file name we create multiple new |