diff --git a/doc/container_concept.htm b/doc/container_concept.htm
index 1b3f0816..f40a36db 100644
--- a/doc/container_concept.htm
+++ b/doc/container_concept.htm
@@ -26,9 +26,15 @@ vectors.
-| StorageArray |
-array_type |
-The type of underlying storage used to store the elements |
+Public base |
+vector_expression<V> |
+V must be derived from this public base type. |
+
+
+| Storage array |
+V::array_type |
+The type of underlying storage array used to store the elements. The array_type must model
+the Storage concept. |
@@ -217,9 +223,15 @@ matrices.
-| StorageArray |
-array_type |
-The type of underlying storage used to store the elements |
+Public base |
+matrix_expression<M> |
+M must be derived from this public base type. |
+
+
+| Storage array |
+M::array_type |
+The type of underlying storage array used to store the elements. The array_type must model
+the Storage concept. |