From 0357ab31d310ef4ed99dbd1e24161463d3833e6f Mon Sep 17 00:00:00 2001 From: mglocker Date: Mon, 24 Oct 2022 04:28:01 +0000 Subject: [PATCH] Fix comment; sconds -> seconds --- sys/dev/i2c/pijuice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/i2c/pijuice.c b/sys/dev/i2c/pijuice.c index 393e7f5bca4..0a1d94e1d93 100644 --- a/sys/dev/i2c/pijuice.c +++ b/sys/dev/i2c/pijuice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pijuice.c,v 1.1 2022/10/23 18:43:00 mglocker Exp $ */ +/* $OpenBSD: pijuice.c,v 1.2 2022/10/24 04:28:01 mglocker Exp $ */ /* * Copyright (c) 2022 Marcus Glocker @@ -360,7 +360,7 @@ pijuice_apminfo(struct apm_power_info *info) DPRINTF(("%s: Battery Charge Level=%d\n", __func__, val8)); info->battery_life = val8; - /* On "normal load" we suck 1% battery in 30 sconds. */ + /* On "normal load" we suck 1% battery in 30 seconds. */ info->minutes_left = (val8 * 30) / 60; } -- 2.20.1