NFC: Update VectorOrTensor -> Shaped

This was missed when the type was renamed.

PiperOrigin-RevId: 275082588
Change-Id: I5895dd48cbf7e09207d589c7ba1f8ab0290f4f2b
diff --git a/third_party/mlir/lib/IR/TypeDetail.h b/third_party/mlir/lib/IR/TypeDetail.h
index 0e7edf0..1cf0f5a 100644
--- a/third_party/mlir/lib/IR/TypeDetail.h
+++ b/third_party/mlir/lib/IR/TypeDetail.h
@@ -117,7 +117,7 @@
   Type const *inputsAndResults;
 };
 
-/// VectorOrTensor Type Storage.
+/// Shaped Type Storage.
 struct ShapedTypeStorage : public TypeStorage {
   ShapedTypeStorage(Type elementType, unsigned subclassData = 0)
       : TypeStorage(subclassData), elementType(elementType) {}