From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 80F91C433FE for ; Sat, 15 Jan 2022 02:10:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232142AbiAOCKQ (ORCPT ); Fri, 14 Jan 2022 21:10:16 -0500 Received: from relay032.a.hostedemail.com ([64.99.140.32]:42970 "EHLO relay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S231258AbiAOCKQ (ORCPT ); Fri, 14 Jan 2022 21:10:16 -0500 Received: from omf09.hostedemail.com (a10.router.float.18 [10.200.18.1]) by unirelay01.hostedemail.com (Postfix) with ESMTP id 2A93C61E65; Sat, 15 Jan 2022 02:10:14 +0000 (UTC) Received: from [HIDDEN] (Authenticated sender: joe@perches.com) by omf09.hostedemail.com (Postfix) with ESMTPA id E9B4F2002F; Sat, 15 Jan 2022 02:10:11 +0000 (UTC) Message-ID: <6598b080d13e4f08d92899857927200a83f1ddfe.camel@perches.com> Subject: Re: [PATCH] ima: Fix trivial typos in the comments From: Joe Perches To: Mimi Zohar , Austin Kim , Austin Kim Cc: dmitry.kasatkin@gmail.com, linux-integrity@vger.kernel.org, linux-security-module@vger.kernel.org, linux-kernel Date: Fri, 14 Jan 2022 18:10:11 -0800 In-Reply-To: References: <20211124214418.GA1094@raspberrypi> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.40.4-1ubuntu2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Stat-Signature: qsz9h8yuyxrfaeutnwbir3kdp9hcn1zp X-Rspamd-Server: rspamout08 X-Rspamd-Queue-Id: E9B4F2002F X-Session-Marker: 6A6F6540706572636865732E636F6D X-Session-ID: U2FsdGVkX1/Sm6NybTT0UK2QqZowJVcSIsHPQLBvWEc= X-HE-Tag: 1642212611-419469 Precedence: bulk List-ID: On Fri, 2022-01-14 at 08:27 -0500, Mimi Zohar wrote: > Hi Joe, > > On Thu, 2022-01-13 at 18:05 -0800, Joe Perches wrote: > > On Thu, 2022-01-13 at 20:51 -0500, Mimi Zohar wrote: > > > On Wed, 2022-01-12 at 17:46 +0900, Austin Kim wrote: > > > > > There are a few minor typos in the comments. Fix these. > > > It would be really nice if checkpatch.pl would catch spelling mistakes > > > before the patch was upstreamed. > > > > Try ./scripts/checkpatch.pl --strict > > "--strict" didn't find the typos in comments, but "--codespell" did. > Nice! Right, but it does depend on the particular typo. checkpatch always uses the scripts/spelling.txt dictionary. codespell isn't always installed on machines and has to be enabled with that --codespell option. Anyway, glad it works for you.