diff options
Diffstat (limited to 'absl/container')
-rw-r--r-- | absl/container/fixed_array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/fixed_array.h b/absl/container/fixed_array.h index 20bde272..58240b49 100644 --- a/absl/container/fixed_array.h +++ b/absl/container/fixed_array.h @@ -120,7 +120,7 @@ class FixedArray { template <typename Iter, EnableIfForwardIterator<Iter> = 0> FixedArray(Iter first, Iter last) : rep_(first, last) {} - // Create the array from an initializer_list. + // Creates the array from an initializer_list. FixedArray(std::initializer_list<T> init_list) : FixedArray(init_list.begin(), init_list.end()) {} |