diff options
author | Michael Shields <mshields@google.com> | 2019-06-20T18·43-0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-20T18·43-0700 |
commit | 8e283d9a5cb7ca201d0ed7af1612ba342293a05a (patch) | |
tree | 8ff65b903bcee269af96df3a451a938a2d9ac1a6 | |
parent | 43ef2148c0936ebf7cb4be6b19927a9d9d145b8f (diff) |
Correctly point to documentation about supported flag types.
-rw-r--r-- | absl/flags/flag.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/flags/flag.h b/absl/flags/flag.h index 2cbbb45ceacb..3ebd9f03bb18 100644 --- a/absl/flags/flag.h +++ b/absl/flags/flag.h @@ -155,7 +155,7 @@ void SetFlag(absl::Flag<T>* flag, const V& v) { // // where: // -// * `T` is a supported flag type (See below), +// * `T` is a supported flag type (see `absl/flags/marshalling.h`), // * `name` designates the name of the flag (as a global variable // `FLAGS_name`), // * `default_value` is an expression holding the default value for this flag |