Re: [PATCH] staging: rtl8723bs: Fix spelling mistakes in comments

From: Ethan Tidmore

Date: Fri Feb 20 2026 - 13:14:41 EST


On Fri Feb 20, 2026 at 7:16 AM CST, tomasz.unger wrote:
> From: Tomasz Unger <tomasz.unger@xxxxxxxx>
>
> 'alloction' -> 'allocation'
> 'overwirte' -> 'overwrite'
> 'indx' -> 'index'
>
> Found by manual inspection.

You don't have to write this, only say if you used a tool and what tool
it was. With that said... there are better ways to find spelling
mistakes than manual inspection, look into codespell.

>
> Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
> ---

...

> if (i >= 0) {
> - /* Fix issue that pairwise and group key have same key id. Pairwise key first, group key can overwirte group only(ex: rekey) */
> + /* Fix issue that pairwise and group key have same key id. Pairwise key first, group key can overwrite group only(ex: rekey) */

While you're here, go ahead and turn this into a multi-line comment. If
unsure how, look in "Documentation/process/coding-style.rst".

Thanks,

ET