@@ -16,12 +16,12 @@ namespace kumi
1616 }
1717
1818 // ====================================================================================================================
19- // ! @ingroup queries
20- // ! @brief Checks if a product type contains a given identifier
19+ // ! @ingroup queries
20+ // ! @brief Checks if a product type contains a given identifier
2121 // !
22- // ! @param t the product type to inspect.
22+ // ! @param t the product type to inspect.
2323 // ! @param id Identifier to check
24- // ! @return `true` if the current product_type contains a field named with the `id` identifier, and `false` otherwise.
24+ // ! @return `true` if the `t` contains a field labeled with the `id` identifier, `false` otherwise.
2525 // !
2626 // ! ## Examples:
2727 // ! @include doc/tuple/algo/contains.cpp
@@ -45,12 +45,12 @@ namespace kumi
4545 }
4646
4747 // ====================================================================================================================
48- // ! @ingroup queries
49- // ! @brief Checks if a product type contains at least one of many identifiers
48+ // ! @ingroup queries
49+ // ! @brief Checks if a product type contains at least one of many identifiers
5050 // !
51- // ! @param t the product type to inspect.
52- // ! @param ids Identifiers to check
53- // ! @return `true` if current product_type contains a field based on the `ids`, and `false` otherwise.
51+ // ! @param t the product type to inspect.
52+ // ! @param ids Identifiers to check
53+ // ! @return `true` if `t` contains a field labeld by one of the `ids`, and `false` otherwise.
5454 // !
5555 // ! ## Examples:
5656 // ! @include doc/tuple/algo/contains_any.cpp
@@ -65,12 +65,12 @@ namespace kumi
6565 }
6666
6767 // ==================================================================================================================
68- // ! @ingroup queries
69- // ! @brief Checks if a product type contains fields based only on selected identifiers
68+ // ! @ingroup queries
69+ // ! @brief Checks if a product type contains fields based only on selected identifiers
7070 // !
71- // ! @param t the product type to inspect.
72- // ! @param ids Identifiers to check
73- // ! @return `true` if current the product_type contains a field based on any of the `ids`, and `false` otherwise.
71+ // ! @param t the product type to inspect.
72+ // ! @param ids Identifiers to check
73+ // ! @return `true` if `t` contains a field labeled by any of the `ids`, and `false` otherwise.
7474 // !
7575 // ! ## Examples:
7676 // ! @include doc/tuple/algo/contains_only.cpp
@@ -89,12 +89,12 @@ namespace kumi
8989 }
9090
9191 // ==================================================================================================================
92- // ! @ingroup queries
93- // ! @brief Checks if a product type contains no fields based on any of the selected identifiers
92+ // ! @ingroup queries
93+ // ! @brief Checks if a product type contains no fields based on any of the selected identifiers
9494 // !
95- // ! @param t the product type to inspect.
96- // ! @param ids Identifiers to check
97- // ! @return `true` if the current product_type contains no field based on any of the `ids`, and `false` otherwise.
95+ // ! @param t the product type to inspect.
96+ // ! @param ids Identifiers to check
97+ // ! @return `true` if `t` contains no field labeled by any of the `ids`, and `false` otherwise.
9898 // !
9999 // ! ## Examples:
100100 // ! @include doc/tuple/algo/contains_none.cpp
0 commit comments