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 X-Spam-Level: X-Spam-Status: No, score=-19.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9E8D4C433B4 for ; Mon, 10 May 2021 10:31:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 76E3A60FE9 for ; Mon, 10 May 2021 10:31:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231563AbhEJKce (ORCPT ); Mon, 10 May 2021 06:32:34 -0400 Received: from mail.kernel.org ([198.145.29.99]:33954 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231725AbhEJKah (ORCPT ); Mon, 10 May 2021 06:30:37 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id E21A061924; Mon, 10 May 2021 10:27:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620642443; bh=LBi6AhTmHaBJf1LFIsgL//SvYHB4PUd2G5MRXtVej0o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GCyF56VIOGbfiYm6M51T+I4vBnqU1hFicNzrM4aQv2G3Z1IdkE/NyP1N0yyOOMCjW l1H8mU8BZk3JLJM8jn0qvWIOKyIJr/PfXKhhAizOOIECFoJKv4JnByVuTcMccN44RZ bIb/SF+adKkO/YI7sbXBch3TV3ocoen0vk+h3JhsMMrumkmC5Y5esWe1MuzYbTJYOO 1MrOXO+Oa5hgckDGV9hZnHWYFYEz25orhvwpw/dOkeajCgYr7cOExTrsp5J7QqqaLs GMu0J4RRv90HX/NKVdmFnKy7EKweauTlsD7ozaBG/+Yg6mHRbG9H9J6m+X8xHb7hLx GJbYLxOOWBb/w== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lg38D-000UPg-B4; Mon, 10 May 2021 12:27:21 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , Greg Kroah-Hartman , linux-kernel@vger.kernel.org Subject: [PATCH 21/53] docs: process: avoid using UTF-8 chars Date: Mon, 10 May 2021 12:26:33 +0200 Message-Id: X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org While UTF-8 characters can be used at the Linux documentation, the best is to use them only when ASCII doesn't offer a good replacement. So, replace the occurences of the following UTF-8 characters: - U+2019 ('’'): RIGHT SINGLE QUOTATION MARK - U+feff (''): ZERO WIDTH NO-BREAK SPACE Signed-off-by: Mauro Carvalho Chehab --- Documentation/process/code-of-conduct.rst | 2 +- Documentation/process/kernel-enforcement-statement.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/process/code-of-conduct.rst b/Documentation/process/code-of-conduct.rst index be50294aebd5..2060834b9cee 100644 --- a/Documentation/process/code-of-conduct.rst +++ b/Documentation/process/code-of-conduct.rst @@ -32,7 +32,7 @@ Examples of unacceptable behavior by participants include: advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment -* Publishing others’ private information, such as a physical or electronic +* Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting diff --git a/Documentation/process/kernel-enforcement-statement.rst b/Documentation/process/kernel-enforcement-statement.rst index e5a1be476047..dc2d813b2e79 100644 --- a/Documentation/process/kernel-enforcement-statement.rst +++ b/Documentation/process/kernel-enforcement-statement.rst @@ -1,4 +1,4 @@ -.. _process_statement_kernel: +.. _process_statement_kernel: Linux Kernel Enforcement Statement ---------------------------------- -- 2.30.2