application: minor, fix doc

This commit is contained in:
King Kévin 2019-12-21 19:29:11 +01:00
parent 27d97f565c
commit 3da74a359b
1 changed files with 4 additions and 4 deletions

View File

@ -176,7 +176,7 @@ static void cable_detect(struct cable_t* cable)
}
/** find which connectors the connections belong to
* @param[io] cable cable for which to find which connectors it connects
* @param[in,out] cable cable for which to find which connectors it connects
* @note only updates connectors_nb and connectors based on connections
*/
static void cable_connectors(struct cable_t* cable)
@ -220,7 +220,7 @@ static void cable_connectors(struct cable_t* cable)
}
/** find which cables match the connector set
* @param[io] cable cable for which to find matching cable definitions
* @param[in,out] cable cable for which to find matching cable definitions
* @note only updates cables_nb and cables based on connectors
*/
static void cable_cables(struct cable_t* cable)
@ -287,7 +287,7 @@ static void cable_cables(struct cable_t* cable)
}
/** calculate number of issues for matching cables
* @param[io] cable cable for which to find the number of issues
* @param[in,out] cable cable for which to find the number of issues
* @note set unconnected_nb, unspecified_nb, and cable_best based on cables
*/
static void cable_issues_nb(struct cable_t* cable)
@ -363,7 +363,7 @@ static void cable_issues_nb(struct cable_t* cable)
}
/** list issues for best matching cable
* @param[io] cable cable for which to calculate the score
* @param[in,out] cable cable for which to calculate the score
* @note set unconnected and unspecified based on cable_best
*/
static void cable_issues(struct cable_t* cable)