summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2020-11-02 16:38:50 -0800
committerGravatar Andy Getz <durandal@google.com>2020-11-02 21:03:38 -0500
commitb8e890f951178876c4f6a370ee7025f838430f07 (patch)
tree95f368d3d986c1272c64b3e21d6d7ad731513f48
parentc9894d1dc38577c4ce50eefe0a944ea8d46d7fc5 (diff)
Export of internal Abseil changes
-- 1ef58d4aefffb2f90a38a89e26057c1e484a3b4b by Abseil Team <absl-team@google.com>: Fixed typo PiperOrigin-RevId: 340342194 GitOrigin-RevId: 1ef58d4aefffb2f90a38a89e26057c1e484a3b4b Change-Id: I75b601f7c2b7737b4b34673aafbcd30cdfd4a4e8
-rw-r--r--absl/container/fixed_array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/fixed_array.h b/absl/container/fixed_array.h
index c8fe8d96..fcb3e545 100644
--- a/absl/container/fixed_array.h
+++ b/absl/container/fixed_array.h
@@ -232,8 +232,8 @@ class FixedArray {
// FixedArray::at
//
- // Bounds-checked access. Returns a reference to the ith element of the
- // fiexed array, or throws std::out_of_range
+ // Bounds-checked access. Returns a reference to the ith element of the fixed
+ // array, or throws std::out_of_range
reference at(size_type i) {
if (ABSL_PREDICT_FALSE(i >= size())) {
base_internal::ThrowStdOutOfRange("FixedArray::at failed bounds check");