Date: Thu, 19 Aug 2021 07:27:50 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: ac7cf0c6364f - stable/13 - Fix a few typos in source code comments Message-ID: <202108190727.17J7Ro8p014663@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=ac7cf0c6364f1ff29a0be34ab579881674074e0b commit ac7cf0c6364f1ff29a0be34ab579881674074e0b Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-08-14 08:08:49 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-08-19 07:27:34 +0000 Fix a few typos in source code comments - s/procesing/processing/ (cherry picked from commit 288e553623d3f8ac33baaabc93a4f030689755d2) --- sys/dev/ce/ceddk.c | 4 ++-- usr.bin/indent/lexi.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/ce/ceddk.c b/sys/dev/ce/ceddk.c index cca95c891964..569476040a93 100644 --- a/sys/dev/ce/ceddk.c +++ b/sys/dev/ce/ceddk.c @@ -245,7 +245,7 @@ static void TAU32_CALLBACK_TYPE ce_on_receive c->error (c, CE_OVERRUN); } else { CE_DDK_DEBUG (b, c, ("Another receive error: %x\n", error)); - /* Do some procesing */ + /* Do some processing */ } CE_ASSERT (!req->pInternal); @@ -297,7 +297,7 @@ static void TAU32_CALLBACK_TYPE ce_on_transmit } else { CE_DDK_DEBUG (c->board, c, ("Another transmit error: %x\n", error)); - /* Do some procesing */ + /* Do some processing */ } CE_ENQUEUE (c->tx_queue, req); diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c index 1a5938689e26..83178a72b4f6 100644 --- a/usr.bin/indent/lexi.c +++ b/usr.bin/indent/lexi.c @@ -354,7 +354,7 @@ lexi(struct parser_state *state) * then following sign is unary */ state->last_u_d = true; /* will make "int a -1" work */ return (ident); /* the ident is not in the list */ - } /* end of procesing for alpanum character */ + } /* end of processing for alpanum character */ /* Scan a non-alphanumeric token */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108190727.17J7Ro8p014663>