[libc++] Add missed comment in https://reviews.llvm.org/D113910

GitOrigin-RevId: 4eda928660890a2aaa223fe6c2f6b7619771a9ab
diff --git a/include/string b/include/string
index 5d8473b..6114220 100644
--- a/include/string
+++ b/include/string
@@ -2658,7 +2658,7 @@
     if (__sz == __cap)
     {
         __grow_by(__cap, 1, __sz, __sz, 0);
-        __is_short = false;
+        __is_short = false; // the string is always long after __grow_by
     }
     pointer __p;
     if (__is_short)