From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 52400A0C4C; Mon, 9 Aug 2021 16:43:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 123414068A; Mon, 9 Aug 2021 16:43:47 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 073564003C for ; Mon, 9 Aug 2021 16:43:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1628520224; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=z1S5ASBwWgvsvo2Br5pkSrAB4IgNFJhJKOEoSQ1KN+E=; b=Hjar9v+tDnZFywJHmhHT70fzgEIjDi8FzzYHFa05Mga9FZbdRwVeteUUIsNk4wAyLqZtW/ nqHdewqFAwE9X1LSOTrKlUwIx/wKPWfK4ey3ItmnKKWrICRylsNs7HOHasKwngx7jeSnz/ fTmzC5/ZGaTvSpK3m5b98tlcJIQ7L90= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-435-pXLa1SxsOGyIB5b8wwNPeQ-1; Mon, 09 Aug 2021 10:43:42 -0400 X-MC-Unique: pXLa1SxsOGyIB5b8wwNPeQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 859D91006C81; Mon, 9 Aug 2021 14:43:41 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.16.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C7E745D6A1; Mon, 9 Aug 2021 14:43:40 +0000 (UTC) From: Aaron Conole To: Ray Kinsella Cc: dev@dpdk.org, bruce.richardson@intel.com, john.mcnamara@intel.com References: <20210809130601.930651-1-mdr@ashroe.eu> Date: Mon, 09 Aug 2021 10:43:39 -0400 In-Reply-To: <20210809130601.930651-1-mdr@ashroe.eu> (Ray Kinsella's message of "Mon, 9 Aug 2021 14:06:01 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [dpdk-dev] [PATCH v1] doc: fix CI typo warnings X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Ray Kinsella writes: > Fix documentation typos that are generating spurious CI warnings. > > Signed-off-by: Ray Kinsella > --- Looks like there are still a few errors. Ex: ioat: end-before not used anywhere deprecation.rst: 'inplace' should probably be 'in place' deprecation.rst: 'esn' -> probably needs a way to exempt this particular 'word' / line, because it is a function name. I'm surprised it is even considered. Is it possible to spin a v2 with these fixes? > doc/guides/sample_app_ug/ioat.rst | 2 +- > doc/guides/sample_app_ug/vmdq_forwarding.rst | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/doc/guides/sample_app_ug/ioat.rst b/doc/guides/sample_app_ug/ioat.rst > index ee0a627b06..b364be3b5d 100644 > --- a/doc/guides/sample_app_ug/ioat.rst > +++ b/doc/guides/sample_app_ug/ioat.rst > @@ -236,7 +236,7 @@ function in order to start processing for each lcore: > .. literalinclude:: ../../../examples/ioat/ioatfwd.c > :language: c > :start-after: Start processing for each lcore. 8< > - :end-before: >8 End of starting to processfor each lcore. > + :end-before: >8 End of starting to process for each lcore. > :dedent: 0 > > The function launches Rx/Tx processing functions on configured lcores > diff --git a/doc/guides/sample_app_ug/vmdq_forwarding.rst b/doc/guides/sample_app_ug/vmdq_forwarding.rst > index ae1b5660df..ed28525a15 100644 > --- a/doc/guides/sample_app_ug/vmdq_forwarding.rst > +++ b/doc/guides/sample_app_ug/vmdq_forwarding.rst > @@ -103,7 +103,7 @@ the MAC of VMDq pool 2 on port 1 is 52:54:00:12:01:02. > > .. literalinclude:: ../../../examples/vmdq/main.c > :language: c > - :start-after: Building correct configruration for vdmq. 8< > + :start-after: Building correct configuration for vdmq. 8< > :end-before: >8 End of get_eth_conf. > > Once the network port has been initialized using the correct VMDq values,