From 6361c208bde78883ce65e9d2b3fa7b674d15ee57 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 5 Aug 2019 13:14:03 +0200 Subject: [PATCH] upeksonly: Fix a number of typos --- libfprint/drivers/upeksonly.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libfprint/drivers/upeksonly.c b/libfprint/drivers/upeksonly.c index 2f37cef..69a79e6 100644 --- a/libfprint/drivers/upeksonly.c +++ b/libfprint/drivers/upeksonly.c @@ -136,7 +136,7 @@ static unsigned char upeksonly_get_pixel(struct fpi_line_asmbl_ctx *ctx, unsigned char *buf; unsigned offset; - /* The scans from this device are rolled right by two colums */ + /* The scans from this device are rolled right by two columns */ if (x < ctx->line_width - 2) offset = x + 2; else if ((x > ctx->line_width - 2) && (x < ctx->line_width)) @@ -296,12 +296,12 @@ static void row_complete(struct fp_img_dev *dev) sdev->num_blank = 0; } else { sdev->num_blank++; - /* Don't consider the scan complete unless theres at least + /* Don't consider the scan complete unless there's at least * MIN_ROWS recorded or very long blank read occurred. * * Typical problem spot: one brief touch before starting the * actual scan. Happens most commonly if scan is started - * from before the first joint resulting in a gap after the inital touch. + * from before the first joint resulting in a gap after the initial touch. */ if (sdev->num_blank > FINGER_REMOVED_THRESHOLD) { sdev->finger_state = FINGER_REMOVED;