From patchwork Mon Mar 11 18:39:39 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Traynor X-Patchwork-Id: 51105 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EBC0444C3; Mon, 11 Mar 2019 19:40:01 +0100 (CET) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 09E5E378B for ; Mon, 11 Mar 2019 19:40:00 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6C3253082E46; Mon, 11 Mar 2019 18:39:59 +0000 (UTC) Received: from rh.redhat.com (ovpn-116-239.ams2.redhat.com [10.36.116.239]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4578B5DD6B; Mon, 11 Mar 2019 18:39:58 +0000 (UTC) From: Kevin Traynor To: john.mcnamara@intel.com, ferruh.yigit@intel.com, dev@dpdk.org Cc: Kevin Traynor Date: Mon, 11 Mar 2019 18:39:39 +0000 Message-Id: <20190311183939.21166-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Mon, 11 Mar 2019 18:39:59 +0000 (UTC) Subject: [dpdk-dev] [PATCH] doc: clarify spaces for alignment note X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Make clear that spaces are only for alignments less than tab size. Signed-off-by: Kevin Traynor Acked-by: Rami Rosen Acked-by: Marko Kovacevic --- doc/guides/contributing/coding_style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/contributing/coding_style.rst b/doc/guides/contributing/coding_style.rst index d96698a73..dd7ddc21e 100644 --- a/doc/guides/contributing/coding_style.rst +++ b/doc/guides/contributing/coding_style.rst @@ -348,5 +348,5 @@ General .. note:: - Global whitespace rule in DPDK, use tabs for indentation, spaces for alignment. + Global whitespace rule in DPDK, use tabs for indentation, spaces for smaller alignments. * Do not put any spaces before a tab for indentation.