doc: Fix parameter names in fp_minutia_get_coords() docs
The API docs for fp_minutia_get_coords() as added in commit 1006467
had the parameters in the docs not match the actual names used.
This commit is contained in:
parent
6e230f0a07
commit
857a399bfa
1 changed files with 3 additions and 3 deletions
|
@ -551,10 +551,10 @@ API_EXPORTED struct fp_minutia **fp_img_get_minutiae(struct fp_img *img,
|
|||
/**
|
||||
* fp_minutia_get_coords:
|
||||
* @minutia: a struct #fp_minutia
|
||||
* @x: the return variable for the X coordinate of the minutia
|
||||
* @y: the return variable for the Y coordinate of the minutia
|
||||
* @coord_x: the return variable for the X coordinate of the minutia
|
||||
* @coord_y: the return variable for the Y coordinate of the minutia
|
||||
*
|
||||
* Sets @x and @y to be the coordinates of the detected minutia, so it
|
||||
* Sets @coord_x and @coord_y to be the coordinates of the detected minutia, so it
|
||||
* can be presented in a more verbose user interface. This is usually only
|
||||
* used for debugging purposes.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue