aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-06-01 23:41:34 +0000
committerWarner Losh <imp@FreeBSD.org>2023-06-02 02:33:41 +0000
commita9e160c38fe1e5585184927a19bfeadef6cced55 (patch)
tree2c36ddd26061e0917d1bbe619bf8ba33663ad2ee
parente5263025de1aa6ec3eac24eb5e95a032dc906526 (diff)
downloadsrc-a9e160c38fe1e5585184927a19bfeadef6cced55.tar.gz
src-a9e160c38fe1e5585184927a19bfeadef6cced55.zip
cron/lib: Fix typos
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/653
-rw-r--r--usr.sbin/cron/lib/entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cron/lib/entry.c b/usr.sbin/cron/lib/entry.c
index d03e80a3ff0d..9d9572c56dc8 100644
--- a/usr.sbin/cron/lib/entry.c
+++ b/usr.sbin/cron/lib/entry.c
@@ -647,7 +647,7 @@ get_range(bitstr_t *bits, int low, int high, const char *names[], int ch,
/* range. set all elements from num1 to num2, stepping
* by num3. (the step is a downward-compatible extension
* proposed conceptually by bob@acornrc, syntactically
- * designed then implmented by paul vixie).
+ * designed then implemented by paul vixie).
*/
for (i = num1; i <= num2; i += num3)
if (EOF == set_element(bits, low, high, i))