docs: Documentation update
diff --git a/model/cs/content-store-impl.cc b/model/cs/content-store-impl.cc
index 31cd66e..7734a7b 100644
--- a/model/cs/content-store-impl.cc
+++ b/model/cs/content-store-impl.cc
@@ -244,8 +244,19 @@
 ////////////////////////////////////////////////////////////////////
 
 // explicit instantiation and registering
+/**
+ * @brief ContentStore with LRU cache replacement policy
+ **/
 template class ContentStoreImpl<lru_policy_traits>;
+
+/**
+ * @brief ContentStore with random cache replacement policy
+ **/
 template class ContentStoreImpl<random_policy_traits>;
+
+/**
+ * @brief ContentStore with FIFO cache replacement policy
+ **/
 template class ContentStoreImpl<fifo_policy_traits>;
 
 NS_OBJECT_ENSURE_REGISTERED_TEMPL(ContentStoreImpl, lru_policy_traits);