From 857a399bfa992866ebe7f46211c8b18961b404ef Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 9 Nov 2018 13:56:42 +0100 Subject: [PATCH] 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. --- libfprint/fpi-img.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libfprint/fpi-img.c b/libfprint/fpi-img.c index 341f811..08b751d 100644 --- a/libfprint/fpi-img.c +++ b/libfprint/fpi-img.c @@ -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. *