From 7cc79a8a86835bc641bf56c0b82e36063f44e22f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 21 Nov 2022 12:09:24 -0700 Subject: [PATCH] [vector] Adjust comment --- src/hb-vector.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-vector.hh b/src/hb-vector.hh index 9a52f901f..f422a121d 100644 --- a/src/hb-vector.hh +++ b/src/hb-vector.hh @@ -169,7 +169,7 @@ struct hb_vector_t operator iter_t () const { return iter (); } operator writer_t () { return writer (); } - /* Faster range-based for loop without bounds-check. */ + /* Faster range-based for loop without constructing an hb_array_t. */ Type *begin () const { return arrayZ; } Type *end () const { return arrayZ + length; }