aboutsummaryrefslogtreecommitdiff
path: root/absl/flags/internal/flag.h
diff options
context:
space:
mode:
authorVertexwahn <julian.amann@tum.de>2023-05-02 20:13:10 +0200
committerVertexwahn <julian.amann@tum.de>2023-05-02 20:24:15 +0200
commitd60c3ac625461da89e198b8912bb0bda251ef980 (patch)
treed6bddb4fc448c4a223cfa860637ed9366ff2cf52 /absl/flags/internal/flag.h
parent3132b83a1a1c82df959e000057de27e1b8ff692d (diff)
downloadabseil-d60c3ac625461da89e198b8912bb0bda251ef980.tar.gz
abseil-d60c3ac625461da89e198b8912bb0bda251ef980.tar.bz2
abseil-d60c3ac625461da89e198b8912bb0bda251ef980.zip
Fix spelling mistakes
Diffstat (limited to 'absl/flags/internal/flag.h')
-rw-r--r--absl/flags/internal/flag.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/flags/internal/flag.h b/absl/flags/internal/flag.h
index d7edb8c6..b41f9a69 100644
--- a/absl/flags/internal/flag.h
+++ b/absl/flags/internal/flag.h
@@ -223,12 +223,12 @@ extern const char kStrippedFlagHelp[];
// first overload if possible. If help message is evaluatable on constexpr
// context We'll be able to make FixedCharArray out of it and we'll choose first
// overload. In this case the help message expression is immediately evaluated
-// and is used to construct the absl::Flag. No additionl code is generated by
+// and is used to construct the absl::Flag. No additional code is generated by
// ABSL_FLAG Otherwise SFINAE kicks in and first overload is dropped from the
// consideration, in which case the second overload will be used. The second
// overload does not attempt to evaluate the help message expression
-// immediately and instead delays the evaluation by returing the function
-// pointer (&T::NonConst) genering the help message when necessary. This is
+// immediately and instead delays the evaluation by returning the function
+// pointer (&T::NonConst) generating the help message when necessary. This is
// evaluatable in constexpr context, but the cost is an extra function being
// generated in the ABSL_FLAG code.
template <typename Gen, size_t N>