diff --git a/examples/2pinfiltration/README.md b/examples/2pinfiltration/README.md
index 96bbfb100e9135bf7c2b4eba909effe013babef5..ebf00a2315e58ee589ddc023e2d10566d2331af3 100644
--- a/examples/2pinfiltration/README.md
+++ b/examples/2pinfiltration/README.md
@@ -478,7 +478,12 @@ namespace Dumux::Properties {
 ```
 
 First, a so-called TypeTag is created. Properties are traits specialized for this TypeTag (a simple `struct`).
-The properties of two other TypeTags are inherited by adding the alias `InheritsFrom`.
+
+>>>
+:white_check_mark: The properties of other TypeTags are inherited if the alias `InheritsFrom` is present.
+These other TypeTags are listed in form of a `std::tuple` in order of importance.
+>>>
+
 Here, properties from the two-phase flow model (`TTag::Twop`) and the
 cell-centered finite volume scheme with two-point-flux approximation (`TTag::CCTpfaModel`)
 are inherited. These other TypeTag definitions can be found in the included
diff --git a/examples/2pinfiltration/properties.hh b/examples/2pinfiltration/properties.hh
index f410521b3cb8efbd47b4229f2cd9d0ca6c693e68..f73a61ccc1cc55297e2fcc4e7cabf315eb1158e4 100644
--- a/examples/2pinfiltration/properties.hh
+++ b/examples/2pinfiltration/properties.hh
@@ -46,7 +46,12 @@
 namespace Dumux::Properties {
 
 // First, a so-called TypeTag is created. Properties are traits specialized for this TypeTag (a simple `struct`).
-// The properties of two other TypeTags are inherited by adding the alias `InheritsFrom`.
+//
+// >>>
+// :white_check_mark: The properties of other TypeTags are inherited if the alias `InheritsFrom` is present.
+// These other TypeTags are listed in form of a `std::tuple` in order of importance.
+// >>>
+//
 // Here, properties from the two-phase flow model (`TTag::Twop`) and the
 // cell-centered finite volume scheme with two-point-flux approximation (`TTag::CCTpfaModel`)
 // are inherited. These other TypeTag definitions can be found in the included