@@ -60,7 +60,7 @@ class AccountMPTokenIssuancesHandler {
6060 /* *
6161 * @brief A struct to hold data for one MPTokenIssuance response.
6262 */
63- struct MPTokenIssuancesResponse {
63+ struct MPTokenIssuanceResponse {
6464 std::string issuer;
6565 uint32_t sequence{};
6666
@@ -87,7 +87,7 @@ class AccountMPTokenIssuancesHandler {
8787 */
8888 struct Output {
8989 std::string account;
90- std::vector<MPTokenIssuancesResponse > issuances;
90+ std::vector<MPTokenIssuanceResponse > issuances;
9191 std::string ledgerHash;
9292 uint32_t ledgerIndex{};
9393 bool validated = true ;
@@ -158,33 +158,42 @@ class AccountMPTokenIssuancesHandler {
158158
159159private:
160160 /* *
161- * @brief Populates an MPTokenIssuancesResponse from a ledger entry and adds it to the list.
161+ * @brief Populates an MPTokenIssuanceResponse from a ledger entry and adds it to the list.
162162 */
163163 static void
164164 addMPTokenIssuance (
165- std::vector<MPTokenIssuancesResponse >& issuances,
165+ std::vector<MPTokenIssuanceResponse >& issuances,
166166 ripple::SLE const & sle,
167167 ripple::AccountID const & account
168168 );
169169
170170private:
171171 /* *
172- * @brief Convert the Output to a JSON object.
172+ * @brief Convert the Output to a JSON object
173+ *
174+ * @param [out] jv The JSON object to convert to
175+ * @param output The output to convert
173176 */
174177 friend void
175178 tag_invoke (boost::json::value_from_tag, boost::json::value& jv, Output const & output);
176179
177180 /* *
178- * @brief Convert a JSON object to Input type.
181+ * @brief Convert a JSON object to Input type
182+ *
183+ * @param jv The JSON object to convert
184+ * @return Input parsed from the JSON object
179185 */
180186 friend Input
181187 tag_invoke (boost::json::value_to_tag<Input>, boost::json::value const & jv);
182188
183189 /* *
184- * @brief Convert the MPTokenIssuancesResponse to a JSON object.
190+ * @brief Convert the MPTokenIssuanceResponse to a JSON object
191+ *
192+ * @param [out] jv The JSON object to convert to
193+ * @param line The MPTokenIssuance response to convert
185194 */
186195 friend void
187- tag_invoke (boost::json::value_from_tag, boost::json::value& jv, MPTokenIssuancesResponse const & issuance);
196+ tag_invoke (boost::json::value_from_tag, boost::json::value& jv, MPTokenIssuanceResponse const & issuance);
188197};
189198
190199} // namespace rpc
0 commit comments